From b96f61a6ec256074d1e94a77b5f5258db5e2623f Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 17 Aug 2008 19:19:07 +0000 Subject: [PATCH] Fix implicit_pattern to match different quote character found in warnings generated by gcc-4.3. Thanks to aballier for reporting with sample log. (trunk r10753) svn path=/main/branches/2.1.2/; revision=11425 --- bin/check-implicit-pointer-usage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/check-implicit-pointer-usage.py b/bin/check-implicit-pointer-usage.py index 1648dc53d..c462329e4 100755 --- a/bin/check-implicit-pointer-usage.py +++ b/bin/check-implicit-pointer-usage.py @@ -17,7 +17,7 @@ import re import sys implicit_pattern = re.compile("([^:]*):(\d+): warning: implicit declaration " - + "of function `([^']*)'") + + "of function [`']([^']*)'") pointer_pattern = re.compile( "([^:]*):(\d+): warning: " + "(" -- 2.26.2