From 13abfd997ea17704e147f780feb60d7ac8f0fd99 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Tue, 17 Jul 2012 06:55:38 +0200 Subject: 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. --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') 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; -- cgit v1.2.3