summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/heapsort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/heapsort.c b/src/lib/libc/stdlib/heapsort.c
index e6fb61ba2f..ad3fffbcd9 100644
--- a/src/lib/libc/stdlib/heapsort.c
+++ b/src/lib/libc/stdlib/heapsort.c
@@ -133,7 +133,7 @@ int
133heapsort(void *vbase, size_t nmemb, size_t size, 133heapsort(void *vbase, size_t nmemb, size_t size,
134 int (*compar)(const void *, const void *)) 134 int (*compar)(const void *, const void *))
135{ 135{
136 int cnt, i, j, l; 136 size_t cnt, i, j, l;
137 char tmp, *tmp1, *tmp2; 137 char tmp, *tmp1, *tmp2;
138 char *base, *k, *p, *t; 138 char *base, *k, *p, *t;
139 139