From 9cc9c92e75a6326c5cf786efff345de436b3530d Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Mon, 5 May 2008 20:38:27 +0000 Subject: Fix some of the Errors/warnings detected by checkapi, make non ASCII char a warning for now. svn path=/trunk/; revision=25240 --- tools/checkAPIs.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl index 762d5f8eed..8b17aef693 100755 --- a/tools/checkAPIs.pl +++ b/tools/checkAPIs.pl @@ -179,8 +179,9 @@ while ($_ = $ARGV[0]) if ($fileContents =~ m{[\x80-\xFF]}) { - print "Error: found non-ASCII characters in " .$filename."\n"; - $errorCount++; + print "Warning: found non-ASCII characters in " .$filename."\n"; +# Treat as warning +# $errorCount++; } if ($fileContents =~ m{%ll}) -- cgit v1.2.3