This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.24-484-g8b1f57f


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  8b1f57f4f2c9c71c51b31fda1c91ca0e36b1fb18 (commit)
      from  36820ce9ceb3c37c3e9c8f1bdd0ca04da730deb4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=8b1f57f4f2c9c71c51b31fda1c91ca0e36b1fb18

commit 8b1f57f4f2c9c71c51b31fda1c91ca0e36b1fb18
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Fri Dec 16 14:37:39 2016 -0200

    Fix typos and missing closing bracket in test-memchr.c
    
    	* string/test-memchr.c (do_test): Typo on â??byteâ?? and missing closing
    	bracket.

diff --git a/ChangeLog b/ChangeLog
index b3f9de2..a38bc6c 100644
--- 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
diff --git a/string/test-memchr.c b/string/test-memchr.c
index e7ba02b..0690cb4 100644
--- a/string/test-memchr.c
+++ b/string/test-memchr.c
@@ -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);

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog            |    5 +++++
 string/test-memchr.c |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]