summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/host/usbh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/host/usbh.c b/src/host/usbh.c
index a3c6c3a04..a61f40910 100644
--- a/src/host/usbh.c
+++ b/src/host/usbh.c
@@ -282,8 +282,9 @@ uint8_t tuh_i_product_get(uint8_t dev_addr) {
static tuh_complete_cb_t string_get_cb;
static bool string_get_complete (uint8_t dev_addr, tusb_control_request_t const * request, xfer_result_t result) {
+ (void) dev_addr;
+ (void) request;
if (string_get_cb != NULL) {
- TU_LOG2("string get done %d\r\n", result);
string_get_cb(result);
}
string_get_cb = NULL;