projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac5d57a
)
* lib/mpsort.c (mpsort): Remove spurious "return" in void function.
author
Jim Meyering
<jim@meyering.net>
Tue, 30 Jan 2007 21:39:19 +0000
(21:39 +0000)
committer
Jim Meyering
<jim@meyering.net>
Tue, 30 Jan 2007 21:39:19 +0000
(21:39 +0000)
ChangeLog
patch
|
blob
|
history
lib/mpsort.c
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index eae0abcf5640fc5c3f45f85782c4cfda9d9ca202..83b7f6ae1c21feb5149ace7a12778ec8c4974b2a 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,7
@@
+2007-01-30 Jim Meyering <jim@meyering.net>
+
+ * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
+
2007-01-29 Bruno Haible <bruno@clisp.org>
* lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
diff --git
a/lib/mpsort.c
b/lib/mpsort.c
index b14df82e9af4a41132315ef31e364da36927a066..d6b1e0e4eefc0ba8a20edd63bf4b377aa8fb98a6 100644
(file)
--- 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);
}