bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

nit in mpsort


From: Jim Meyering
Subject: nit in mpsort
Date: Tue, 30 Jan 2007 22:39:06 +0100

2007-01-30  Jim Meyering  <address@hidden>

        * lib/mpsort.c (mpsort): Remove spurious "return" in void function.

Index: lib/mpsort.c
===================================================================
RCS file: /sources/gnulib/gnulib/lib/mpsort.c,v
retrieving revision 1.1
diff -u -p -r1.1 mpsort.c
--- lib/mpsort.c        29 Jan 2007 07:23:21 -0000      1.1
+++ lib/mpsort.c        30 Jan 2007 21:38:29 -0000
@@ -153,5 +153,5 @@ mpsort_with_tmp (void const **restrict b
 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);
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]