diff options
author | Yang Tse <yangsita@gmail.com> | 2008-08-11 01:22:57 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-08-11 01:22:57 +0000 |
commit | 24b189071035e5b987c137b491532597158889b9 (patch) | |
tree | 8448afef2b1e7de8ee0ddcbf85e35a23de22a672 /lib/progress.c | |
parent | 3a1d28379a8a9c5ab7bf621c0d80d2ffeb0733ef (diff) | |
download | curl-24b189071035e5b987c137b491532597158889b9.tar.gz |
s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/g
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 2956d1a99..b0aa853f0 100644 --- a/lib/progress.c +++ b/lib/progress.c @@ -86,7 +86,7 @@ static char *max5data(curl_off_t bytes, char *max5) (int)(bytes/ONE_MEGABYTE), (int)(bytes%ONE_MEGABYTE)/(ONE_MEGABYTE/10) ); } -#if SIZEOF_CURL_OFF_T > 4 +#if CURL_SIZEOF_CURL_OFF_T > 4 else if(bytes < ( (curl_off_t)10000*ONE_MEGABYTE)) /* 'XXXXM' is good until we're at 10000MB or above */ snprintf(max5, 6, "%4" FORMAT_OFF_T "M", (curl_off_t)(bytes/ONE_MEGABYTE)); |