]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
runtests.pl: fix sprintf() using one too many %s
authorDaniel Stenberg <daniel@haxx.se>
Wed, 25 Jun 2025 07:19:24 +0000 (09:19 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 25 Jun 2025 09:27:32 +0000 (11:27 +0200)
Closes #17740

tests/runtests.pl

index d644a5e90834eb79c3ffcc40e619a6ce8a3b0e28..2708800318048f9e32cf4a831b95412ad1724cbc 100755 (executable)
@@ -879,7 +879,7 @@ sub checksystemfeatures {
         $feature{"TrackMemory"} = 0;
     }
 
-    logmsg sprintf("* Env: %s%s%s%s%s", $valgrind?"Valgrind ":"",
+    logmsg sprintf("* Env: %s%s%s%s", $valgrind?"Valgrind ":"",
                    $run_duphandle?"test-duphandle ":"",
                    $run_event_based?"event-based ":"",
                    $nghttpx_h3);