diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-15 00:18:27 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-15 14:58:17 -0600 |
commit | 3faaad9fe1f11cfe5699c6720c897bfddc7cf49a (patch) | |
tree | f15758869c758eeeb7604afc5c03e8d7601d8315 /libusb/usb_common.c | |
parent | 9c0338b1b4495457659157e1e9f47d422dcefc2e (diff) |
Begone with the printf variants of the log functions
Diffstat (limited to 'libusb/usb_common.c')
-rw-r--r-- | libusb/usb_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libusb/usb_common.c b/libusb/usb_common.c index 88e01b4..32aa53f 100644 --- a/libusb/usb_common.c +++ b/libusb/usb_common.c @@ -68,12 +68,12 @@ uint16_t const *tud_descriptor_string_cb(uint8_t strid, uint16_t langid) { memcpy(desc.bString, globals.serial, bytelen); break; default: - log_debugf("GET STRING: unknown string id=%"PRIu8, strid); + log_debugln("GET STRING: unknown string id=", strid); return NULL; } break; default: - log_debugf("GET STRING: unknown LANGID=%"PRIx16, langid); + log_debugln("GET STRING: unknown LANGID=", (base16_u16_, langid)); return NULL; } } |