mirror of
https://github.com/curl/curl.git
synced 2026-04-18 16:01:42 +03: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:
parent
8276791749
commit
13abfd997e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue