From 870d331885ecd63652fc9dbd1ea35f05aa7d8c0f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 7 Mar 2026 17:03:55 +0100 Subject: [PATCH] first.c fix result type mask --- tests/libtest/first.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/first.c b/tests/libtest/first.c index fe72ab3561..a195a9815a 100644 --- a/tests/libtest/first.c +++ b/tests/libtest/first.c @@ -201,7 +201,7 @@ void ws_close(CURL *curl) { size_t sent; CURLcode result = curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); - curl_mfprintf(stderr, "ws: curl_ws_send returned %u, sent %zu\n", + curl_mfprintf(stderr, "ws: curl_ws_send returned %d, sent %zu\n", result, sent); } #endif /* CURL_DISABLE_WEBSOCKETS */