aboutsummaryrefslogtreecommitdiff
path: root/lib/select.h
diff options
context:
space:
mode:
authorGisle Vanem <gvanem@broadpark.no>2004-11-19 14:38:02 +0000
committerGisle Vanem <gvanem@broadpark.no>2004-11-19 14:38:02 +0000
commit539e34b5df54817d67225e70e26d7a623476d8e4 (patch)
tree5d550a28b7c996969c8bc978aaf97f04a289904b /lib/select.h
parent765683403f27836d60bc7e210d22f93e8f63ace1 (diff)
Suppress signed vs. unsigned warnings on Win32
Diffstat (limited to 'lib/select.h')
-rw-r--r--lib/select.h2
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;
};