diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-01-19 21:20:24 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-01-19 21:20:24 +0000 |
commit | 6035a4b0440c515c4401e8ec2a3210ea37106a2f (patch) | |
tree | 921009a93a6657524a5958a1ad59ccad72e848df /tests | |
parent | 469d3ed591cd07039bdb1c10102eaed4937ecbb8 (diff) |
avoid "Use of uninitialized value $l in concatenation"
Diffstat (limited to 'tests')
-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 91de74b2f..8ffdf9c85 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2864,7 +2864,7 @@ sub singletest { closedir(DIR); logmsg "DEBUG: No valgrind files\n" unless(@files); my $f; - my $l; + my $l=""; foreach $f (@files) { logmsg "DEBUG: valgrind file: $f\n"; if($f =~ /^valgrind$testnum\./) { |