1
0
mirror of https://github.com/moparisthebest/curl synced 2025-02-28 09:21:50 -05:00

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.
This commit is contained in:
Guenter Knauf 2012-07-17 06:55:38 +02:00
parent 8276791749
commit 13abfd997e

View File

@ -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;