(keycompare): Remove stray SPACE before TAB that was
authorJim Meyering <jim@meyering.net>
Sat, 10 Dec 2005 09:44:00 +0000 (09:44 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 10 Dec 2005 09:44:00 +0000 (09:44 +0000)
causing `make distcheck' to fail.

src/sort.c

index fda3ebc..655220d 100644 (file)
@@ -1224,7 +1224,7 @@ keycompare (const struct line *a, const struct line *b)
           get_hash (texta, lena, diga);
           get_hash (textb, lenb, digb);
           diff = memcmp (diga, digb, sizeof (diga));
-         if (diff)
+         if (diff)
            goto not_equal;
         }