Tell the user which file __func__ was found in.

Change-Id: Ia69ceaf320cb97447f80a7c090efe6d36262a1c1
Reviewed-on: https://code.wireshark.org/review/5001
Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
This commit is contained in:
Jeff Morriss 2014-10-30 12:01:43 -04:00
parent 62831ba914
commit e0a352631d
1 changed files with 3 additions and 2 deletions

View File

@ -2120,13 +2120,14 @@ while ($_ = $ARGV[0])
}
if ($fileContents =~ m{ __func__ }xo)
{
print STDERR "Error: __func__ is not portable, use G_STRFUNC\n";
print STDERR "Error: Found __func__ (which is not portable, use G_STRFUNC) in " .$filename."\n";
$errorCount++;
}
if (($fileContents =~ m{ \$Id .* \$ }xo))
{
print STDERR "Warning: ".$filename." does have an SVN Id tag. Please remove !\n";
print STDERR "Warning: ".$filename." has an SVN Id tag. Please remove it!\n";
}
# Remove all the C-comments
$fileContents =~ s{ $CComment } []xog;