summaryrefslogtreecommitdiff
path: root/libusb/version_nano.h
diff options
context:
space:
mode:
authorKenjiro Tsuji <kenjiro.tsuji@oracle.com>2019-10-10 19:46:28 -0700
committerNathan Hjelm <hjelmn@google.com>2019-10-30 19:03:16 -0700
commite924b8fccf6ed74ac911bb5a8b4c3cb9679334b0 (patch)
tree59564862021faa141de440f1b231f70014f25e23 /libusb/version_nano.h
parent5a0788318f6ea24f877960fd5a709722c2d928d4 (diff)
downloadlibusb-e924b8fccf6ed74ac911bb5a8b4c3cb9679334b0.tar.gz
Solaris: format mismatch in some usbi_dbg()
In sunos_usb.c, some usbi_dbg() calls have format mismatch. For example, "%d" is specified for a size_t variable and "%llx" is specified for a uint64_t variable. In LP64 mode, they are format mismatch. For those specifications that are incompatible between ILP32 and LP64, format macros defined in <inttypes.h>, such as PRIuPTR and PRIx64 should be used. Closes #640 Closes #638 Signed-off-by: Nathan Hjelm <hjelmn@google.com>
Diffstat (limited to 'libusb/version_nano.h')
-rw-r--r--libusb/version_nano.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index 05fc12e..0ab0323 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 11405
+#define LIBUSB_NANO 11406