diff options
Diffstat (limited to 'manual/string.texi')
-rw-r--r-- | manual/string.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/string.texi b/manual/string.texi index 4437dddd47..ba5a2c7ba5 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -1572,8 +1572,8 @@ sort_strings_fast (char **array, int nstrings) @} /* @r{Sort @code{temp_array} by comparing transformed strings.} */ - qsort (temp_array, sizeof (struct sorter), - nstrings, compare_elements); + qsort (temp_array, nstrings, + sizeof (struct sorter), compare_elements); /* @r{Put the elements back in the permanent array} @r{in their sorted order.} */ |