diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-15 07:47:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-15 07:47:59 +0000 |
commit | d5bdd2b2f98f22388527e2749ff77b95a03b86c5 (patch) | |
tree | e321b715957bffb136779686341f7e4693b10667 /lib/strerror.c | |
parent | 562d2de30377efda3317a99140e08abd55ed35c1 (diff) |
prevent compiler warning
Diffstat (limited to 'lib/strerror.c')
-rw-r--r-- | lib/strerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strerror.c b/lib/strerror.c index 85baa635d..b567f9bee 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -553,7 +553,7 @@ const char *Curl_strerror(struct connectdata *conn, int err) #if defined(WIN32) && !defined(__CYGWIN__) -#if _WIN32_WCE +#ifdef _WIN32_WCE buf[0]=0; { wchar_t wbuf[256]; |