]> mj.ucw.cz Git - libucw.git/blobdiff - lib/sorter/array.h
Shaved off a couple of items from the TODO.
[libucw.git] / lib / sorter / array.h
index aa0e2266f990c2449063b2412b018343a357a71e..aeb7c64c380bc038b1a1dda0e414109913dfc379 100644 (file)
@@ -181,7 +181,7 @@ static void Q(quicksort)(void *array_ptr, uns num_elts)
 
 /* Just the splitting part of QuickSort */
 
-static void Q(quicksplit)(void *array_ptr, uns num_elts, uns *leftp, uns *rightp)
+static void Q(quicksplit)(void *array_ptr, uns num_elts, int *leftp, int *rightp)
 {
   Q(key) *array = array_ptr;
   int l, r, m;