diff options
author | Pete Batard <pbatard@gmail.com> | 2010-03-02 16:18:27 +0000 |
---|---|---|
committer | Pete Batard <pbatard@gmail.com> | 2010-03-02 16:18:27 +0000 |
commit | efee8c08714169b4583e300146e85a98690d1828 (patch) | |
tree | 9efe7868079e9b941d19db34888298d33f8d67d2 | |
parent | 32f130a5408245548031f640a4c743b372423e13 (diff) | |
download | libusb-efee8c08714169b4583e300146e85a98690d1828.tar.gz |
fixed cygwin warning with poll_dbgr184
-rw-r--r-- | libusb/os/poll_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/os/poll_windows.c b/libusb/os/poll_windows.c index 3395756..02e7584 100644 --- a/libusb/os/poll_windows.c +++ b/libusb/os/poll_windows.c @@ -79,7 +79,7 @@ #if defined(DEBUG_POLL_WINDOWS) #define poll_dbg usbi_dbg #else -#define poll_dbg +#define poll_dbg(...) #endif #if defined(_PREFAST_) |