diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2004-11-19 14:38:02 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2004-11-19 14:38:02 +0000 |
commit | 539e34b5df54817d67225e70e26d7a623476d8e4 (patch) | |
tree | 5d550a28b7c996969c8bc978aaf97f04a289904b /lib/select.h | |
parent | 765683403f27836d60bc7e210d22f93e8f63ace1 (diff) | |
download | curl-539e34b5df54817d67225e70e26d7a623476d8e4.tar.gz |
Suppress signed vs. unsigned warnings on Win32
Diffstat (limited to 'lib/select.h')
-rw-r--r-- | lib/select.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/select.h b/lib/select.h index b3d9ce3ae..c3cb22057 100644 --- a/lib/select.h +++ b/lib/select.h @@ -36,7 +36,7 @@ struct pollfd { - int fd; + curl_socket_t fd; short events; short revents; }; |