From 4f496f2f70890dc0af9bdf9d61732401ee0f23b8 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Fri, 26 Jan 2007 16:18:47 +0000 Subject: Use "%Od" instead of CURL_FORMAT_OFF_T for functions. --- src/main.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main.c b/src/main.c index 4867d1a0e..a4626d42e 100644 --- a/src/main.c +++ b/src/main.c @@ -2200,7 +2200,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ "A specfied range MUST include at least one dash (-). " "Appending one for you!\n"); off = curlx_strtoofft(nextarg, NULL, 10); - snprintf(buffer, sizeof(buffer), CURL_FORMAT_OFF_T "-", off); + snprintf(buffer, sizeof(buffer), "%Od-", off); GetStr(&config->range, buffer); } else @@ -3253,7 +3253,7 @@ CURLcode _my_setopt(CURL *curl, const char *name, CURLoption tag, ...) } else { curl_off_t oval = va_arg(arg, curl_off_t); - snprintf(value, sizeof(value), "(curl_off_t)"CURL_FORMAT_OFF_T, oval); + snprintf(value, sizeof(value), "(curl_off_t)%Od", oval); ret = curl_easy_setopt(curl, tag, oval); } @@ -4268,8 +4268,7 @@ operate(struct Configurable *config, int argc, char *argv[]) /* We have written data to a output file, we truncate file */ if(!(config->conf&CONF_MUTE)) - fprintf(stderr, "Throwing away " CURL_FORMAT_OFF_T - " bytes\n", outs.bytes); + fprintf(stderr, "Throwing away %Od bytes\n", outs.bytes); fflush(outs.stream); /* truncate file at the position where we started appending */ #ifdef HAVE_FTRUNCATE -- cgit v1.2.3