From 797a77fcc8655a641630758dc4022f215008f23b Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 20 Apr 2025 12:45:42 -0600 Subject: libmisc: log.h: Add a "log_" prefix to errorf/infof/debugf --- libusb/usb_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libusb/usb_common.c') 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 + * Copyright (C) 2024-2025 Luke T. Shumaker * 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; } } -- cgit v1.2.3-2-g168b