diff options
author | Yang Tse <yangsita@gmail.com> | 2008-08-15 02:58:15 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-08-15 02:58:15 +0000 |
commit | 66fb9ca5f6de6eb74c2c3ade7ee651a299247749 (patch) | |
tree | cfa88c9844546ba7d13375df915fe0fa4a136abc /lib/formdata.c | |
parent | 11cb78c5f8338e23d12cee9a1cf0a9bbc7261af2 (diff) | |
download | curl-66fb9ca5f6de6eb74c2c3ade7ee651a299247749.tar.gz |
For congruency sake with the naming of other CURL_XXXXXX_CURL_OFF_T macros,
the names of the curl_off_t formatting string directives now become
CURL_FORMAT_CURL_OFF_T and CURL_FORMAT_CURL_OFF_TU.
CURL_FMT_OFF_T -> CURL_FORMAT_CURL_OFF_T
CURL_FMT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
Remove the use of an internal name for the curl_off_t formatting string directives
and use the common one available from the inside and outside of the library.
FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T
FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
Diffstat (limited to 'lib/formdata.c')
-rw-r--r-- | lib/formdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/formdata.c b/lib/formdata.c index bf00a40ac..637e37ed4 100644 --- a/lib/formdata.c +++ b/lib/formdata.c @@ -1674,7 +1674,7 @@ int main(int argc, argv_item_t argv[]) } while(1); fprintf(stdout, "size: "); - fprintf(stdout, CURL_FORMAT_OFF_T, size); + fprintf(stdout, "%" CURL_FORMAT_CURL_OFF_T, size); fprintf(stdout, "\n"); if(errors) fprintf(stdout, "\n==> %d Test(s) failed!\n", errors); |