From b47a30a04ced1c312dfd1afc19ceb1373988322a Mon Sep 17 00:00:00 2001 From: mbanth Date: Fri, 4 Jun 2021 16:27:17 +0100 Subject: [PATCH] Remove debugging printf() --- lib_xua/src/hid/hid_report_descriptor.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib_xua/src/hid/hid_report_descriptor.c b/lib_xua/src/hid/hid_report_descriptor.c index e233d187..022085ed 100644 --- a/lib_xua/src/hid/hid_report_descriptor.c +++ b/lib_xua/src/hid/hid_report_descriptor.c @@ -137,7 +137,6 @@ size_t hidGetReportDescriptorLength( void ) size_t hidGetReportLength( void ) { size_t retVal = ( hidReportDescriptorPrepared ) ? HID_REPORT_LENGTH : 0; - printf( "hidGetReportLength: %d\n", retVal ); return retVal; }