diff options
author | Yang Tse <yangsita@gmail.com> | 2010-02-04 19:44:31 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-02-04 19:44:31 +0000 |
commit | 7aef172a347a0422a0968fde9c487639ff673383 (patch) | |
tree | 56ffb38d50520aa2a62aefa24a592381ecec4193 /lib/socks.c | |
parent | f47b84b57ff74915820d26efc30459158bbe5c9c (diff) | |
download | curl-7aef172a347a0422a0968fde9c487639ff673383.tar.gz |
fix printf-style format strings
Diffstat (limited to 'lib/socks.c')
-rw-r--r-- | lib/socks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/socks.c b/lib/socks.c index a1ead128f..d68c3df34 100644 --- a/lib/socks.c +++ b/lib/socks.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -393,7 +393,7 @@ CURLcode Curl_SOCKS5(const char *proxy_name, if(!socks5_resolve_local && hostname_len > 255) { infof(conn->data,"SOCKS5: server resolving disabled for hostnames of " - "length > 255 [actual len=%d]\n", hostname_len); + "length > 255 [actual len=%zu]\n", hostname_len); socks5_resolve_local = TRUE; } |