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.22-443-g0ad76d1


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  0ad76d1ee7cc1be5277621e08f7dd66493de5ca1 (commit)
      from  8e2f7c68111ba8fae795ee08b6822e21ab8cfa38 (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=0ad76d1ee7cc1be5277621e08f7dd66493de5ca1

commit 0ad76d1ee7cc1be5277621e08f7dd66493de5ca1
Author: Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
Date:   Tue Oct 20 17:53:57 2015 -0200

    tst-backtrace4: fix a warning message
    
    Modify a warning message so that it doesn't sound as an error, e.g.:
    "Obtained backtrace with 6 functions (but wanted at least 6)"
    
    Update a comment too.

diff --git a/ChangeLog b/ChangeLog
index b05d6d0..29b2730 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-10-21  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
+
+	* debug/tst-backtrace4.c (handle_signal): Fix a comment and
+	warning message.
+
 2015-10-21  Joseph Myers  <joseph@codesourcery.com>
 
 	* Makeconfig (+gccwarn-c): Add -Wold-style-definition.
diff --git a/debug/tst-backtrace4.c b/debug/tst-backtrace4.c
index f455abd..33ac328 100644
--- a/debug/tst-backtrace4.c
+++ b/debug/tst-backtrace4.c
@@ -49,9 +49,9 @@ handle_signal (int signum)
 
   /* Get the backtrace addresses.  */
   n = backtrace (addresses, sizeof (addresses) / sizeof (addresses[0]));
-  printf ("Obtained backtrace with %d functions (but wanted at least %d)\n",
+  printf ("Obtained backtrace with %d functions (want at least %d)\n",
 	  n, NUM_FUNCTIONS);
-  /* Check that there are at least six functions.  */
+  /* Check that there are at least NUM_FUNCTIONS functions.  */
   if (n < NUM_FUNCTIONS)
     {
       FAIL ();

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

Summary of changes:
 ChangeLog              |    5 +++++
 debug/tst-backtrace4.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]