diff options
-rw-r--r-- | grailsort.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |