summaryrefslogtreecommitdiff
path: root/libusb/version.h
diff options
context:
space:
mode:
authorLudovic Rousseau <ludovic.rousseau+github@gmail.com>2012-04-20 22:25:38 +0100
committerPete Batard <pete@akeo.ie>2012-04-20 22:29:33 +0100
commit36a7119bf296cecd4e910bef86908fd782224960 (patch)
treecf6e0975e079f08fb88c09def76c79cfdeeccf69 /libusb/version.h
parent2aad19b93d64490bbf85c21c042821f2a16a0d9a (diff)
downloadlibusb-36a7119bf296cecd4e910bef86908fd782224960.tar.gz
Linux: Fix signed vs unsigned compiler warnings
os/linux_usbfs.c: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
Diffstat (limited to 'libusb/version.h')
-rw-r--r--libusb/version.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/version.h b/libusb/version.h
index b4386fc..18aa054 100644
--- a/libusb/version.h
+++ b/libusb/version.h
@@ -9,7 +9,7 @@
#define LIBUSB_MICRO 10
#endif
#ifndef LIBUSB_NANO
-#define LIBUSB_NANO 10479
+#define LIBUSB_NANO 10480
#endif
/* LIBUSB_RC is the release candidate suffix. Should normally be empty. */
#ifndef LIBUSB_RC