]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
singleuse.pl: fix string warning
authorDaniel Stenberg <daniel@haxx.se>
Tue, 28 Oct 2025 08:37:39 +0000 (09:37 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 28 Oct 2025 10:34:19 +0000 (11:34 +0100)
"Use of uninitialized value $unittests in concatenation on line 170"

Closes #19266

scripts/singleuse.pl

index b4cbe3ff4a12fc5e2972d5379e68e00aad15b909..3ce5dda4423b3fc7b736f6df5e248bc13b621524 100755 (executable)
@@ -36,7 +36,7 @@
 use strict;
 use warnings;
 
-my $unittests;
+my $unittests="";
 if(@ARGV && $ARGV[0] eq "--unit") {
     $unittests = "tests/unit ";
     shift @ARGV;