diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-12-17 23:34:26 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-12-17 23:34:26 +0100 |
commit | 9583b4af9057c9e35ec3dd3270d4c4813b5f7aaa (patch) | |
tree | e50544f244a6243aec3d72a559375c17b83f25bb /docs/examples/multi-debugcallback.c | |
parent | 8219bc9e19c78ec4617ae5311b4ea64c49763ff6 (diff) | |
download | curl-9583b4af9057c9e35ec3dd3270d4c4813b5f7aaa.tar.gz |
examples: fix compiler warnings
Diffstat (limited to 'docs/examples/multi-debugcallback.c')
-rw-r--r-- | docs/examples/multi-debugcallback.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/examples/multi-debugcallback.c b/docs/examples/multi-debugcallback.c index 529c3d9bb..773faec67 100644 --- a/docs/examples/multi-debugcallback.c +++ b/docs/examples/multi-debugcallback.c @@ -37,12 +37,12 @@ void dump(const char *text, /* without the hex output, we can fit more on screen */ width = 0x40; - fprintf(stream, "%s, %010.10ld bytes (0x%08.8lx)\n", + fprintf(stream, "%s, %10.10ld bytes (0x%8.8lx)\n", text, (long)size, (long)size); for(i=0; i<size; i+= width) { - fprintf(stream, "%04.4lx: ", (long)i); + fprintf(stream, "%4.4lx: ", (long)i); if(!nohex) { /* hex not disabled, show it */ @@ -79,6 +79,7 @@ int my_trace(CURL *handle, curl_infotype type, { const char *text; + (void)userp; (void)handle; /* prevent compiler warning */ switch (type) { @@ -108,7 +109,7 @@ int my_trace(CURL *handle, curl_infotype type, /* * Simply download a HTTP file. */ -int main(int argc, char **argv) +int main(void) { CURL *http_handle; CURLM *multi_handle; |