From 4c5672774f1b7b0227f51e4163d7f8445b10957e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 25 Jun 2025 09:19:24 +0200 Subject: [PATCH] runtests.pl: fix sprintf() using one too many %s Closes #17740 --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.2