diff mercurial/manifest.c @ 27340:7b8b6e3b3571

manifest: fix formatting One poor unfortunate line was hanging way off the right hand side of the universe. Rescued it.
author Bryan O'Sullivan <bos@serpentine.com>
date Sat, 12 Dec 2015 20:10:33 -0800
parents 89c2bf63a83b
children d6aa1a8c8d7c
line wrap: on
line diff
--- a/mercurial/manifest.c	Sat Dec 12 13:39:29 2015 -0500
+++ b/mercurial/manifest.c	Sat Dec 12 20:10:33 2015 -0800
@@ -242,7 +242,7 @@
 	hash = nodeof(l);
 	consumed = pl + 41;
 	flags = PyString_FromStringAndSize(l->start + consumed,
-									   l->len - consumed - 1);
+					   l->len - consumed - 1);
 	if (!path || !hash || !flags) {
 		goto done;
 	}