diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-19 00:44:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-19 00:44:55 +0000 |
commit | 38f07ce0fb8e01ffd3ef06d67a659f5013ab1156 (patch) | |
tree | 0aaf3972f0e5bda56f29045853e3365916ef3438 | |
parent | 987cdebefb2fbf57bfbf593c0df1e17a0ffc3bf1 (diff) |
fix compiler warning
-rw-r--r-- | lib/setup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup.h b/lib/setup.h index 3ea2e84e7..b37e3ecc8 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -160,7 +160,7 @@ typedef unsigned char bool; #define WIN32_LEAN_AND_MEAN /* Prevent including <winsock*.h> in <windows.h> */ #endif -#if HAVE_WINSOCK2_H +#ifdef HAVE_WINSOCK2_H #include <winsock2.h> /* required by telnet.c */ #endif |