diff options
author | ville <ville@localhost> | 2009-09-23 21:13:04 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2009-09-23 21:13:04 +0000 |
commit | b166d2b91ff9347458241d60b7bb1a5ff823351c (patch) | |
tree | 8f44e0621f700745c9ea9ebc49ecead1a7c3bc60 | |
parent | 92a1b9b509e7d34adf33929de2c4d21578576880 (diff) | |
download | markup-validator-b166d2b91ff9347458241d60b7bb1a5ff823351c.zip markup-validator-b166d2b91ff9347458241d60b7bb1a5ff823351c.tar.gz markup-validator-b166d2b91ff9347458241d60b7bb1a5ff823351c.tar.bz2 |
Fix mark_error() prototype.
-rwxr-xr-x | httpd/cgi-bin/check | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index e3402b4..edfec2c 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -14,7 +14,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.702 2009-09-23 21:11:01 ville Exp $ +# $Id: check,v 1.703 2009-09-23 21:13:04 ville Exp $ # # Disable buffering on STDOUT! $| = 1; @@ -208,7 +208,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.702 $; + $VERSION = q$Revision: 1.703 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -2198,7 +2198,7 @@ sub report_errors ($) { # Chop the source line into 3 pieces; the character at which the error # was detected, and everything to the left and right of that position. # That way we can add markup to the relevant char without breaking &ent(). -sub mark_error (\$\$) { +sub mark_error ($$) { my $line = shift; my $col = shift; |