about summary refs log tree commit diff
path: root/manual/string.texi
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-12-12 22:10:30 +0000
committerUlrich Drepper <drepper@redhat.com>1998-12-12 22:10:30 +0000
commit9fc19e48b594911f45a3df47218e47c42238ceb8 (patch)
treec91e4e0ec341bdcde59263ff9ce6104e804fe2f4 /manual/string.texi
parentc090aa15110f9c3781150c4e1d7d3733b455459e (diff)
downloadglibc-9fc19e48b594911f45a3df47218e47c42238ceb8.tar.gz
glibc-9fc19e48b594911f45a3df47218e47c42238ceb8.tar.xz
glibc-9fc19e48b594911f45a3df47218e47c42238ceb8.zip
Update.
1998-12-12  Geoff Keating  <geoffk@ozemail.com.au> 
 
	* posix/fnmatch.c (fnmatch): Arguments to FOLD must not have 
	side-effects. 
 
Diffstat (limited to 'manual/string.texi')
-rw-r--r--manual/string.texi4
1 files changed, 2 insertions, 2 deletions
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