From: Guenter Knauf Date: Mon, 6 Aug 2012 09:45:06 +0000 (+0200) Subject: Fixed compiler warning - argument is type long. X-Git-Tag: curl-7_28_0~139 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=69f5fe070dd0f20a5c4591c70d8d42bc0b8f02dc;p=thirdparty%2Fcurl.git Fixed compiler warning - argument is type long. --- diff --git a/tests/libtest/libauthretry.c b/tests/libtest/libauthretry.c index 6403c839b5..900e85fa4c 100644 --- a/tests/libtest/libauthretry.c +++ b/tests/libtest/libauthretry.c @@ -39,7 +39,7 @@ static int send_request(CURL *curl, const char *url, int seq, long auth_scheme, } sprintf(full_url, "%s%04d", url, seq); - fprintf(stderr, "Sending new request %d to %s with credential %s (auth %d)\n", seq, full_url, userpwd, auth_scheme); + fprintf(stderr, "Sending new request %d to %s with credential %s (auth %ld)\n", seq, full_url, userpwd, auth_scheme); test_setopt(curl, CURLOPT_URL, full_url); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_HEADER, 1L);