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.19-29-g195b816


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  195b8165ac35dfe9f5ba14e1a69bb88b7686c5a9 (commit)
      from  43bb7f07a029ce0880f2dcc83b4131d705befa57 (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=195b8165ac35dfe9f5ba14e1a69bb88b7686c5a9

commit 195b8165ac35dfe9f5ba14e1a69bb88b7686c5a9
Author: David S. Miller <davem@davemloft.net>
Date:   Wed Feb 5 22:13:13 2014 -0800

    Fix tst-sscanf and tst-swscanf on 64-bit.
    
    	* stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
    	processing int_tests.

diff --git a/ChangeLog b/ChangeLog
index c457d8b..ce8b207 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-02-11  David S. Miller  <davem@davemloft.net>
+
+	* stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
+	processing int_tests.
+
 2014-02-10  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/mips: Move directory from ports/sysdeps/mips.
diff --git a/stdio-common/tst-sscanf.c b/stdio-common/tst-sscanf.c
index 1214c7d..9fef93a 100644
--- a/stdio-common/tst-sscanf.c
+++ b/stdio-common/tst-sscanf.c
@@ -186,7 +186,8 @@ main (void)
 
   for (i = 0; i < sizeof (int_tests) / sizeof (int_tests[0]); ++i)
     {
-      int dummy, ret;
+      long dummy;
+      int ret;
 
       if ((ret = SSCANF (int_tests[i].str, int_tests[i].fmt,
 			 &dummy)) != int_tests[i].retval)

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

Summary of changes:
 ChangeLog                 |    5 +++++
 stdio-common/tst-sscanf.c |    3 ++-
 2 files changed, 7 insertions(+), 1 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]