spaces->tabs in one line of a C extension for consistency
authorThomas Arendsen Hein <thomas@intevation.de>
Mon, 20 Oct 2008 14:53:53 +0200
changeset 7187 a79d3f535809
parent 7178 98b6c3dde237
child 7188 1f07e2e86974
spaces->tabs in one line of a C extension for consistency
mercurial/bdiff.c
--- a/mercurial/bdiff.c	Sun Oct 19 19:49:56 2008 +0200
+++ b/mercurial/bdiff.c	Mon Oct 20 14:53:53 2008 +0200
@@ -80,7 +80,7 @@
 	h = 0;
 	for (p = a; p < a + len; p++) {
 		/* Leonid Yuriev's hash */
-                h = (h * 1664525) + *p + 1013904223;
+		h = (h * 1664525) + *p + 1013904223;
 
 		if (*p == '\n' || p == plast) {
 			l->h = h;