summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-07 21:50:41 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-07 21:50:41 +0000
commitc691518b667ec7622c84f0179966f4b62d6cf3f8 (patch)
tree3cfb90bd9eaa7fc205dbaa97459789cf4030d667 /bin
parent562f8b0f3bf6bf3f83fa0613b21b6227e997c937 (diff)
downloadATCD-c691518b667ec7622c84f0179966f4b62d6cf3f8.tar.gz
Commented out the "our" command (not all perls seem to have it) and
changed the final error count so it can be picked up by the make_pretty script
Diffstat (limited to 'bin')
-rwxr-xr-xbin/fuzz.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/fuzz.pl b/bin/fuzz.pl
index 399d3bc4c60..7213f9ac252 100755
--- a/bin/fuzz.pl
+++ b/bin/fuzz.pl
@@ -412,7 +412,7 @@ sub check_for_pre_and_post ()
##############################################################################
-our ($opt_c, $opt_d, $opt_h, $opt_l, $opt_m);
+#our ($opt_c, $opt_d, $opt_h, $opt_l, $opt_m);
if (!getopts ('cdhl:m') || $opt_h) {
print "fuzz.pl [-cdhm] [-l level] [file1, file2, ...]\n";
@@ -451,6 +451,6 @@ check_for_preprocessor_comments () if ($opt_l >= 7);
check_for_tchar () if ($opt_l >= 4);
check_for_pre_and_post () if ($opt_l >= 4);
-print "\n$errors error(s), $warnings warnings(s)\n";
+print "\nFuzz.pl - $errors error(s), $warnings warnings(s)\n";
exit (1) if $errors > 0;