* lib/mpsort.c (mpsort): Remove spurious "return" in void function.
[pspp] / lib / mpsort.c
index b14df82e9af4a41132315ef31e364da36927a066..d6b1e0e4eefc0ba8a20edd63bf4b377aa8fb98a6 100644 (file)
@@ -153,5 +153,5 @@ mpsort_with_tmp (void const **restrict base, size_t n,
 void
 mpsort (void const **base, size_t n, comparison_function cmp)
 {
-  return mpsort_with_tmp (base, n, base + n, cmp);
+  mpsort_with_tmp (base, n, base + n, cmp);
 }