mirror of
https://github.com/curl/curl.git
synced 2026-07-25 11:17:56 +03:00
typecast to int when printfing CURLcode
This commit is contained in:
parent
37817667e2
commit
b2cff76722
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ void *fire(void *ptr)
|
|||
code = curl_easy_perform(curl);
|
||||
if( code != CURLE_OK ) {
|
||||
fprintf(stderr, "perform url '%s' repeat %d failed, curlcode %d\n",
|
||||
tdata->url, i, code);
|
||||
tdata->url, i, (int)code);
|
||||
}
|
||||
|
||||
printf( "CLEANUP\n" );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue