aboutsummaryrefslogtreecommitdiffstats
path: root/tools/checkAPIs.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkAPIs.pl')
-rwxr-xr-xtools/checkAPIs.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index 9fab2dd9ff..cbbf2810a8 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -166,6 +166,13 @@ while ($_ = $ARGV[0])
$errorCount++;
}
+ if ($fileContents =~ m{%ll})
+ {
+ # use G_GINT64_MODIFIER instead of ll
+ print "Error: found %ll in " .$filename."\n";
+ $errorCount++;
+ }
+
# Remove all the C-comments and strings
$fileContents =~ s {$commentAndStringRegex} []g;