|
From: <sv...@va...> - 2012-07-27 20:53:54
|
florian 2012-07-27 21:53:47 +0100 (Fri, 27 Jul 2012)
New Revision: 12792
Log:
Fix compiler warning.
Modified files:
trunk/coregrind/m_errormgr.c
Modified: trunk/coregrind/m_errormgr.c (+0 -1)
===================================================================
--- trunk/coregrind/m_errormgr.c 2012-07-27 17:25:32 +01:00 (rev 12791)
+++ trunk/coregrind/m_errormgr.c 2012-07-27 21:53:47 +01:00 (rev 12792)
@@ -1108,7 +1108,6 @@
/* True if s contains no wildcard (?, *) characters. */
static Bool is_simple_str (Char *s)
{
- int i;
while (*s) {
if (*s == '?' || *s == '*')
return False;
|