From 85f2a592114832c67c70b9138905b44890b800bd Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Sun, 3 Aug 2014 12:44:16 -0500 Subject: Remove unnecessary test of bnmel --- grailsort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grailsort.c') diff --git a/grailsort.c b/grailsort.c index 379e23a..093a5a2 100644 --- a/grailsort.c +++ b/grailsort.c @@ -21,7 +21,7 @@ size_t merge(char *buf, char *base, size_t anmel, size_t bnmel, size_t width, cm char *b = base + anmel * width; size_t sorted; - for (sorted = 0; anmel && bnmel && cmp(base, b) <= 0; sorted++, anmel--) base += width; + for (sorted = 0; anmel && cmp(base, b) <= 0; sorted++, anmel--) base += width; swap(base, a, anmel * width); -- cgit v1.2.3