diff options
author | Ludovic Rousseau <ludovic.rousseau@free.fr> | 2016-02-27 17:52:05 +0100 |
---|---|---|
committer | Ludovic Rousseau <ludovic.rousseau@free.fr> | 2016-03-02 16:07:00 +0100 |
commit | 686ccc284b9c54984fce6a8d2a29d020ede773a9 (patch) | |
tree | aabde2dc96d71646bb5a8a62ae2a228420666a2b /libusb/version_nano.h | |
parent | 2e78f9525f0558dcb004486baa18a0fcc7ccfb5e (diff) | |
download | libusb-686ccc284b9c54984fce6a8d2a29d020ede773a9.tar.gz |
examples: fix 3 compiler warnings
fxload.c:202:17: warning: comparison of integers of different signs: 'int' and
'unsigned long' [-Wsign-compare]
...for (j=0; j<ARRAYSIZE(known_device); j++) {
~^~~~~~~~~~~~~~~~~~~~~~~~
fxload.c:222:12: warning: comparison of integers of different signs: 'int' and
'unsigned long' [-Wsign-compare]
if (j < ARRAYSIZE(known_device)) {
~ ^ ~~~~~~~~~~~~~~~~~~~~~~~
fxload.c:263:13: warning: comparison of integers of different signs: 'int' and
'unsigned long' [-Wsign-compare]
for (i=0; i<ARRAYSIZE(path); i++) {
~^~~~~~~~~~~~~~~~
Signed-off-by: Ludovic Rousseau <ludovic.rousseau@free.fr>
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 34110b0..340ae63 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11086 +#define LIBUSB_NANO 11087 |