grep-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

grep branch, master, updated. v2.6.2-5-g2c51cf6


From: Paolo Bonzini
Subject: grep branch, master, updated. v2.6.2-5-g2c51cf6
Date: Wed, 31 Mar 2010 08:03:51 +0000

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 "grep".

The branch, master has been updated
       via  2c51cf6c4d088f4cabaa815754e1737ad1db052d (commit)
      from  bd363e731b1b022657b4266bc3267eeeeee398f9 (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://git.savannah.gnu.org/cgit/grep.git/commit/?id=2c51cf6c4d088f4cabaa815754e1737ad1db052d


commit 2c51cf6c4d088f4cabaa815754e1737ad1db052d
Author: Paolo Bonzini <address@hidden>
Date:   Wed Mar 31 10:03:16 2010 +0200

    tests: fix -Wformat failure
    
    * tests/get-mb-cur-max (main): Cast MB_CUR_MAX to int.

diff --git a/tests/get-mb-cur-max.c b/tests/get-mb-cur-max.c
index 3ba7389..48e2713 100644
--- a/tests/get-mb-cur-max.c
+++ b/tests/get-mb-cur-max.c
@@ -29,7 +29,7 @@ main (int argc, char **argv)
   set_program_name (argv[0]);
   if (setlocale (LC_ALL, argv[1]))
     {
-      printf ("%d\n", MB_CUR_MAX);
+      printf ("%d\n", (int) MB_CUR_MAX);
       exit (EXIT_SUCCESS);
     }
 

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

Summary of changes:
 tests/get-mb-cur-max.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
grep




reply via email to

[Prev in Thread] Current Thread [Next in Thread]