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
commit31675d0854b69c92641214f2bffde5a30a3c7173 (patch)
tree3cfb90bd9eaa7fc205dbaa97459789cf4030d667 /bin
parentd2d0bfec329e4e7badc7b9e45645e2a08a196934 (diff)
downloadATCD-31675d0854b69c92641214f2bffde5a30a3c7173.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;