From 9fc19e48b594911f45a3df47218e47c42238ceb8 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 12 Dec 1998 22:10:30 +0000 Subject: Update. 1998-12-12 Geoff Keating * posix/fnmatch.c (fnmatch): Arguments to FOLD must not have side-effects. --- manual/string.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'manual/string.texi') diff --git a/manual/string.texi b/manual/string.texi index c6bca05d1c..ae4ba659af 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -800,8 +800,8 @@ void sort_strings (char **array, int nstrings) @{ /* @r{Sort @code{temp_array} by comparing the strings.} */ - qsort (array, sizeof (char *), - nstrings, compare_elements); + qsort (array, nstrings, + sizeof (char *), compare_elements); @} @end smallexample -- cgit 1.4.1