summaryrefslogtreecommitdiff
path: root/libusb/io.c
diff options
context:
space:
mode:
authorChris Dickens <christopher.a.dickens@gmail.com>2020-03-27 18:23:16 -0700
committerChris Dickens <christopher.a.dickens@gmail.com>2020-03-27 18:23:16 -0700
commit8b09dd490de9d23e47dbae4c0f1504e2afc1a8e9 (patch)
treea07f7d90238002814517717b2af17be9a6742dae /libusb/io.c
parent30b56baec51b70d5b10f1f14ff47327ecc8ebbd0 (diff)
downloadlibusb-8b09dd490de9d23e47dbae4c0f1504e2afc1a8e9.tar.gz
core: Kill the OS_* definitions and use in the source code
These symbols are no longer necessary for the source code since commit cad7d0edd9 ("core: Kill usbi_os_backend structure definition madness"). Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
Diffstat (limited to 'libusb/io.c')
-rw-r--r--libusb/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/io.c b/libusb/io.c
index b2208e8..5457d0e 100644
--- a/libusb/io.c
+++ b/libusb/io.c
@@ -2765,7 +2765,7 @@ DEFAULT_VISIBILITY
const struct libusb_pollfd ** LIBUSB_CALL libusb_get_pollfds(
libusb_context *ctx)
{
-#ifndef OS_WINDOWS
+#ifndef _WIN32
struct libusb_pollfd **ret = NULL;
struct usbi_pollfd *ipollfd;
size_t i = 0;