diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-02 07:25:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-02 07:25:39 +0000 |
commit | 7ab3b5b3bb4c02dc00621efe13b8d3b29b819250 (patch) | |
tree | 2e0f118ed75aed0201d4b15d8d1b948cda184430 /lib/progress.c | |
parent | 00d5f886e3037434f7173f06908ade39488476b5 (diff) | |
download | curl-7ab3b5b3bb4c02dc00621efe13b8d3b29b819250.tar.gz |
use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity of
having to redef that name
Diffstat (limited to 'lib/progress.c')
-rw-r--r-- | lib/progress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/progress.c b/lib/progress.c index ab97d337e..f7e507685 100644 --- a/lib/progress.c +++ b/lib/progress.c @@ -240,7 +240,7 @@ int Curl_pgrsUpdate(struct connectdata *conn) if (!data->progress.callback) { if(conn->resume_from) fprintf(data->set.err, - "** Resuming transfer from byte position " CURL_FORMAT_OFF_T + "** Resuming transfer from byte position " FORMAT_OFF_T "\n", conn->resume_from); fprintf(data->set.err, |