about summary refs log tree commit diff
path: root/manual/string.texi
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2013-09-09 22:54:07 +1000
committerAllan McRae <allan@archlinux.org>2013-09-09 22:56:38 +1000
commita9f5ce099cb30fe6b8f2ba240cacffe7ecfbfef2 (patch)
treecb962c701516efd9dee6c42f8e477b233758f5ac /manual/string.texi
parent34829bc28f727ad9db6a180191c62d33f67b7915 (diff)
downloadglibc-a9f5ce099cb30fe6b8f2ba240cacffe7ecfbfef2.tar.gz
glibc-a9f5ce099cb30fe6b8f2ba240cacffe7ecfbfef2.tar.xz
glibc-a9f5ce099cb30fe6b8f2ba240cacffe7ecfbfef2.zip
Fix typo in strcoll example
Diffstat (limited to 'manual/string.texi')
-rw-r--r--manual/string.texi2
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);
 @}