changeset 37930:892592475094

revlog: use literal -1 instead of variable that always has that value We were setting "ntrev" to "rev", but "rev" was always -1 at the end of the loop, so it's clearer to use a literal -1. Differential Revision: https://phab.mercurial-scm.org/D3498
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 04 May 2018 21:31:34 -0700
parents 9c6d1d41b3e6
children faa41fd282d1
files mercurial/cext/revlog.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/cext/revlog.c	Fri May 04 22:17:28 2018 -0700
+++ b/mercurial/cext/revlog.c	Fri May 04 21:31:34 2018 -0700
@@ -1243,7 +1243,7 @@
 			if (nt_insert(self, n, rev) == -1)
 				return -1;
 		}
-		self->ntrev = rev;
+		self->ntrev = -1;
 	}
 	return 0;
 }