diff options
-rw-r--r-- | src/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sort.c b/src/sort.c index fda3ebc8e..655220d76 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; } |