This commit is contained in:
Viktor Szakats 2026-03-09 01:44:25 +01:00
parent 388889bae5
commit 893a3a6cef
No known key found for this signature in database

View file

@ -2916,6 +2916,6 @@ CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...)
va_end(arg);
if(result == CURLE_BAD_FUNCTION_ARGUMENT)
failf(data, "setopt 0x%x got bad argument", option);
failf(data, "setopt 0x%x got bad argument", (unsigned int)option);
return result;
}