From: Guenter Knauf Date: Tue, 17 Jul 2012 04:55:38 +0000 (+0200) Subject: Fixed warning 'uninitialized value in numeric gt'. X-Git-Tag: curl-7_27_0~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13abfd997ea17704e147f780feb60d7ac8f0fd99;p=curl Fixed warning 'uninitialized value in numeric gt'. This is a MSYS/MinGW-only warning; full warning text is: Use of uninitialized value in numeric gt (>) at ../../curl/tests/runtests.pl line 2227. --- diff --git a/tests/runtests.pl b/tests/runtests.pl index ddda76f1c..ee2f30873 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2206,7 +2206,7 @@ sub checksystem { # given path to the "actual" windows path. my @m = `mount`; - my $matchlen; + my $matchlen = 0; my $bestmatch; my $mount;