diff options
author | Yang Tse <yangsita@gmail.com> | 2011-05-24 20:39:58 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-05-24 20:39:58 +0200 |
commit | b7357176063256a44b4a5a20c6b9bbe92bdda713 (patch) | |
tree | 832ce5f2036b99c11cc2f0d301629502e99afcc6 /lib/easy.c | |
parent | ec33742d1bd22fd964fda9a9947a4ec3c3e3236a (diff) | |
download | curl-b7357176063256a44b4a5a20c6b9bbe92bdda713.tar.gz |
compiler warning: fix
Fix compiler warning: variable was set but never used
Fix compiler warning: clobber ignored
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/easy.c b/lib/easy.c index 9cb275b1a..ac037d266 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -86,6 +86,7 @@ #include "slist.h" #include "curl_rand.h" #include "non-ascii.h" +#include "warnless.h" #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> |