From 2eacf252b7aa4f1b144dfdef2017db8e029ea913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Sun, 5 Apr 2015 13:14:16 +0200 Subject: [PATCH] Fix typo --- src/heapsort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heapsort.c b/src/heapsort.c index 25c65f1..8580a73 100644 --- a/src/heapsort.c +++ b/src/heapsort.c @@ -3,7 +3,7 @@ static void uc_sift(unsigned char *base, size_t start, size_t count, size_t width, -i uc_hs_cmp cmp, uc_hs_swp swap, void *cookie) + uc_hs_cmp cmp, uc_hs_swp swap, void *cookie) { size_t root = start, child;