diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-03 16:06:10 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-03 16:07:09 +0200 |
commit | 6b75d2c2df7209919a70a29a4479625b62fb3c28 (patch) | |
tree | a5b2bd4195db4cb69f3299814e910bd04ebb6eac /lib/connect.h | |
parent | 2be65bb0c5317b6821882b41558bd8cd2eb64d25 (diff) | |
download | curl-6b75d2c2df7209919a70a29a4479625b62fb3c28.tar.gz |
fix a bunch of MSVC compiler warnings
Diffstat (limited to 'lib/connect.h')
-rw-r--r-- | lib/connect.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/connect.h b/lib/connect.h index 299233d4f..052549368 100644 --- a/lib/connect.h +++ b/lib/connect.h @@ -21,6 +21,7 @@ * KIND, either express or implied. * ***************************************************************************/ +#include "setup.h" #include "nonblock.h" /* for curlx_nonblock(), formerly Curl_nonblock() */ @@ -64,7 +65,7 @@ curl_socket_t Curl_getconnectinfo(struct SessionHandle *data, */ void Curl_sndbufset(curl_socket_t sockfd); #else -#define Curl_sndbufset(y) +#define Curl_sndbufset(y) Curl_nop_stmt #endif void Curl_updateconninfo(struct connectdata *conn, curl_socket_t sockfd); |