From b4e662d1745d8b26cb6f8d544a10e84c78cc211f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 30 Jan 2007 21:39:19 +0000 Subject: [PATCH] * lib/mpsort.c (mpsort): Remove spurious "return" in void function. --- ChangeLog | 4 ++++ lib/mpsort.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index eae0abcf56..83b7f6ae1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-01-30 Jim Meyering + + * lib/mpsort.c (mpsort): Remove spurious "return" in void function. + 2007-01-29 Bruno Haible * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'. diff --git a/lib/mpsort.c b/lib/mpsort.c index b14df82e9a..d6b1e0e4ee 100644 --- a/lib/mpsort.c +++ b/lib/mpsort.c @@ -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); } -- 2.30.2