grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v2.6.3-70-gf84fdb1


From: Paolo Bonzini
Subject: grep branch, master, updated. v2.6.3-70-gf84fdb1
Date: Sun, 23 May 2010 08:30:09 +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  f84fdb12c7e6028f83aa9b8a0bc05e8a3b68572b (commit)
      from  1da431e6830663150af375ba452a77d9ec29706c (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=f84fdb12c7e6028f83aa9b8a0bc05e8a3b68572b


commit f84fdb12c7e6028f83aa9b8a0bc05e8a3b68572b
Author: Aharon Robbins <address@hidden>
Date:   Fri May 21 09:18:46 2010 +0200

    dfa: fix signedness warnings
    
    * src/dfa.c (dfaexec): Cast p when passing it to prepare_wc_buf.

diff --git a/src/dfa.c b/src/dfa.c
index 5984a20..f53e797 100644
--- a/src/dfa.c
+++ b/src/dfa.c
@@ -3199,7 +3199,7 @@ dfaexec (struct dfa *d, char const *begin, char *end,
       MALLOC(mblen_buf, unsigned char, end - begin + 2);
       MALLOC(inputwcs, wchar_t, end - begin + 2);
       memset(&mbs, 0, sizeof(mbstate_t));
-      prepare_wc_buf (p, end);
+      prepare_wc_buf ((const char *) p, end);
     }
 #endif /* MBS_SUPPORT */
 
@@ -3276,7 +3276,7 @@ dfaexec (struct dfa *d, char const *begin, char *end,
 
 #if MBS_SUPPORT
           if (d->mb_cur_max > 1)
-            prepare_wc_buf (p, end);
+            prepare_wc_buf ((const char *) p, end);
 #endif
         }
 

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

Summary of changes:
 src/dfa.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

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