From: Jim Meyering Date: Sat, 10 Dec 2005 09:44:00 +0000 (+0000) Subject: (keycompare): Remove stray SPACE before TAB that was X-Git-Tag: v6.0~1168 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2b661352b1a5ca4d6796a3aff5d67b9fe2c95bc;p=thirdparty%2Fcoreutils.git (keycompare): Remove stray SPACE before TAB that was causing `make distcheck' to fail. --- diff --git a/src/sort.c b/src/sort.c index fda3ebc8ef..655220d760 100644 --- a/src/sort.c +++ b/src/sort.c @@ -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; }