diff options
| author | David Schultz <das@FreeBSD.org> | 2008-01-13 02:11:10 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2008-01-13 02:11:10 +0000 |
| commit | badf97cd559de5bb2e86e9f37652c3c1eccf3cbe (patch) | |
| tree | 8ab753cca46bb4886744da1c76766f12410a0f88 /lib/libc/stdlib/qsort.c | |
| parent | c6eabb5ec17295964e9cce203f9b54efb1d3ae55 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib/qsort.c')
| -rw-r--r-- | lib/libc/stdlib/qsort.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/qsort.c b/lib/libc/stdlib/qsort.c index 65e038c05d75..0958cd3f0fcf 100644 --- a/lib/libc/stdlib/qsort.c +++ b/lib/libc/stdlib/qsort.c @@ -111,7 +111,8 @@ qsort(void *a, size_t n, size_t es, cmp_t *cmp) #endif { char *pa, *pb, *pc, *pd, *pl, *pm, *pn; - int d, r, swaptype, swap_cnt; + size_t d, r; + int swaptype, swap_cnt; loop: SWAPINIT(a, es); swap_cnt = 0; |
