diff options
Diffstat (limited to 'libusb/usb_common.c')
-rw-r--r-- | libusb/usb_common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libusb/usb_common.c b/libusb/usb_common.c index 29dec42..efd12bc 100644 --- a/libusb/usb_common.c +++ b/libusb/usb_common.c @@ -1,6 +1,6 @@ /* libusb/usb_common.c - Common framework for implementing multiple USB devices at once * - * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> + * Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com> * SPDX-License-Identifier: AGPL-3.0-or-later */ @@ -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: - debugf("GET STRING: unknown string id=%"PRIu8, strid); + log_debugf("GET STRING: unknown string id=%"PRIu8, strid); return NULL; } break; default: - debugf("GET STRING: unknown LANGID=%"PRIx16, langid); + log_debugf("GET STRING: unknown LANGID=%"PRIx16, langid); return NULL; } } |