summaryrefslogtreecommitdiff
path: root/libusb/os/windows_compat.h
diff options
context:
space:
mode:
authorPete Batard <pbatard@gmail.com>2010-01-14 13:34:11 +0000
committerPete Batard <pbatard@gmail.com>2010-01-14 13:34:11 +0000
commit995c7df391d6011e624006bfbb610ace18f9488f (patch)
tree53c681c3a1dadd42eb3a536791076ad269d69f00 /libusb/os/windows_compat.h
parente45233574257f5ffd409e830c0d1d32fc6b37d81 (diff)
downloadlibusb-995c7df391d6011e624006bfbb610ace18f9488f.tar.gz
fixed MSVC warnings (/W4 or MSVC6)
Diffstat (limited to 'libusb/os/windows_compat.h')
-rw-r--r--libusb/os/windows_compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/os/windows_compat.h b/libusb/os/windows_compat.h
index 61de32d..4ce3645 100644
--- a/libusb/os/windows_compat.h
+++ b/libusb/os/windows_compat.h
@@ -48,7 +48,7 @@
#define POLLNVAL 0x0020 /* Invalid request: fd not open */
struct pollfd {
- unsigned int fd; /* file descriptor */
+ int fd; /* file descriptor */
short events; /* requested events */
short revents; /* returned events */
};