From b2cff76722152f48d3774939ae5e3b6824797032 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 25 Feb 2004 15:43:15 +0000 Subject: [PATCH] typecast to int when printfing CURLcode --- tests/libtest/lib506.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/lib506.c b/tests/libtest/lib506.c index 03acf9a10..037b87532 100644 --- a/tests/libtest/lib506.c +++ b/tests/libtest/lib506.c @@ -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" );