aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2007-11-26 18:59:32 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2007-11-26 18:59:32 +0000
commitc641bfb3635fa3401a5143c2609c487a27bfa545 (patch)
tree593f3807aaea84bf27af74f97eddd8e7bf867f19 /tools
parent309f7503e542eed1057fe906a4399703e8e9071b (diff)
When we've found C++ style comments, tell which file we found them in.
svn path=/trunk/; revision=23609
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkAPIs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index 1d1526b4bb..ebc0828651 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -144,7 +144,7 @@ while ($_ = $ARGV[0])
if ($fileContents =~ m{//})
{
- print "Error: Found C++ style comments\n";
+ print "Error: Found C++ style comments in " .$filename."\n";
$errorCount++;
}