diff options
Diffstat (limited to 'src/port/qsort_arg.c')
-rw-r--r-- | src/port/qsort_arg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/qsort_arg.c b/src/port/qsort_arg.c index a2194b0fb1..6d54fbc2b4 100644 --- a/src/port/qsort_arg.c +++ b/src/port/qsort_arg.c @@ -80,7 +80,7 @@ do { \ } while (0) #define SWAPINIT(a, es) swaptype = ((char *)(a) - (char *)0) % sizeof(long) || \ - (es) % sizeof(long) ? 2 : (es) == sizeof(long)? 0 : 1; + (es) % sizeof(long) ? 2 : (es) == sizeof(long)? 0 : 1 static void swapfunc(char *a, char *b, size_t n, int swaptype) |