diff options
author | Guenter Knauf <lists@gknw.net> | 2012-07-17 06:55:38 +0200 |
---|---|---|
committer | Guenter Knauf <lists@gknw.net> | 2012-07-17 06:55:38 +0200 |
commit | 13abfd997ea17704e147f780feb60d7ac8f0fd99 (patch) | |
tree | c3e04d6f5eab9d45405d3d5ec313ee30e8c719a5 /tests/runtests.pl | |
parent | 82767917492464ae8613f837e69f182c328fa156 (diff) |
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.
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; |