aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-05-05 20:38:27 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-05-05 20:38:27 +0000
commit9cc9c92e75a6326c5cf786efff345de436b3530d (patch)
tree57c6602103931f306e7e7fdb4c736ebff9f7959b /tools
parentbf9ccab9cbc05ead599282575497385ea596b1d7 (diff)
Fix some of the Errors/warnings detected by checkapi,
make non ASCII char a warning for now. svn path=/trunk/; revision=25240
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkAPIs.pl5
1 files changed, 3 insertions, 2 deletions
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})