diff options
author | Allan McRae <allan@archlinux.org> | 2013-09-09 22:54:07 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-09-09 22:56:38 +1000 |
commit | a9f5ce099cb30fe6b8f2ba240cacffe7ecfbfef2 (patch) | |
tree | cb962c701516efd9dee6c42f8e477b233758f5ac /manual | |
parent | 34829bc28f727ad9db6a180191c62d33f67b7915 (diff) | |
download | glibc-a9f5ce099cb30fe6b8f2ba240cacffe7ecfbfef2.tar.gz glibc-a9f5ce099cb30fe6b8f2ba240cacffe7ecfbfef2.tar.xz glibc-a9f5ce099cb30fe6b8f2ba240cacffe7ecfbfef2.zip |
Fix typo in strcoll example
Diffstat (limited to 'manual')
-rw-r--r-- | manual/string.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/string.texi b/manual/string.texi index 2a164a9523..3329761fc9 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -1370,7 +1370,7 @@ int compare_elements (const void *v1, const void *v2) @{ char * const *p1 = v1; - char * const *p1 = v2; + char * const *p2 = v2; return strcoll (*p1, *p2); @} |