diff options
author | Paul Cercueil <paul@crapouillou.net> | 2021-10-06 14:31:24 +0100 |
---|---|---|
committer | Tormod Volden <debian.tormod@gmail.com> | 2021-10-30 15:21:56 +0200 |
commit | 619c28f37efec41e12d7de67f869fa24c82bc21f (patch) | |
tree | e1468e5585e6d9c166a123dd36fc581fc4efc933 /libusb/version_nano.h | |
parent | a584d060c853c9867dabc915fbafcbeccba1bc12 (diff) | |
download | libusb-619c28f37efec41e12d7de67f869fa24c82bc21f.tar.gz |
Windows: Fix ssize_t unconditionally defined
The standard procedure to define ssize_t on Windows is to wrap it around
a check for the _SSIZE_T_DEFINED macro.
If not done, it makes it impossible to use the libusb.h header along
with other headers (from other libraries) that also attempt to define
ssize_t.
Closes #1007
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Diffstat (limited to 'libusb/version_nano.h')
-rw-r--r-- | libusb/version_nano.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/version_nano.h b/libusb/version_nano.h index 191a7e7..922dca9 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11659 +#define LIBUSB_NANO 11660 |