From: Daniel Stenberg Date: Wed, 25 Jun 2025 07:19:24 +0000 (+0200) Subject: runtests.pl: fix sprintf() using one too many %s X-Git-Tag: curl-8_15_0~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c5672774f1b7b0227f51e4163d7f8445b10957e;p=thirdparty%2Fcurl.git runtests.pl: fix sprintf() using one too many %s Closes #17740 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index d644a5e908..2708800318 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -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);