]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix typos and missing closing bracket in test-memchr.c
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 16 Dec 2016 16:37:39 +0000 (14:37 -0200)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 16 Dec 2016 16:37:54 +0000 (14:37 -0200)
* string/test-memchr.c (do_test): Typo on ‘byte’ and missing closing
bracket.

ChangeLog
string/test-memchr.c

index b3f9de28ee662a8fa8ea0c55bdcd2df7228bf342..a38bc6c9c58d1c5ae9a666cb311ee53d3cca0d32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-12-16  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+       * string/test-memchr.c (do_test): Typo on ‘byte’ and missing closing
+       bracket.
+
 2016-12-16  Joseph Myers  <joseph@codesourcery.com>
 
        * scripts/build-many-glibcs.py (Context.exec_self): Flush stdout
index e7ba02b617eac391b3f9155d6022eea0adf663a3..0690cb4530173dad1ac38580de06cdf293e92059 100644 (file)
@@ -184,8 +184,8 @@ test_main (void)
       do_test (i, 64, 256, 256, 0);
 
       /* Check for large input sizes and for these cases we need to
-        make sure the bye is within the size range (that's why
-        7 << i must be smaller than 2048.  */
+        make sure the byte is within the size range (that's why
+        7 << i must be smaller than 2048).  */
       do_test (0, 7 << i, 2048, SIZE_MAX, 23);
       do_test (0, 2048 - i, 2048, SIZE_MAX, 23);
       do_test (i, 64, 256, SIZE_MAX, 23);