summaryrefslogtreecommitdiff
path: root/src/class
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2024-07-19 21:33:50 +0700
committerGitHub <[email protected]>2024-07-19 21:33:50 +0700
commite9f9d43d67804dc853cd064e8c0e204f2758731f (patch)
tree70e7bd203f8e9d3a0bd9a711ebf161cd5c71d61c /src/class
parent9a418317f38a818bd20e8b0a25bb837b0c3c7491 (diff)
parent31a979a6cccc2d4dc0a86474643710ae3b7f34fe (diff)
Merge pull request #2723 from liamfraser/rp2040_tweaks
RP2040 tweaks
Diffstat (limited to 'src/class')
-rw-r--r--src/class/hid/hid_host.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/class/hid/hid_host.c b/src/class/hid/hid_host.c
index 115a8a4df..7639a8fc6 100644
--- a/src/class/hid/hid_host.c
+++ b/src/class/hid/hid_host.c
@@ -657,7 +657,9 @@ uint8_t tuh_hid_parse_report_descriptor(tuh_hid_report_info_t* report_info_arr,
uint8_t const data8 = desc_report[0];
TU_LOG(3, "tag = %d, type = %d, size = %d, data = ", tag, type, size);
- for (uint32_t i = 0; i < size; i++) TU_LOG(3, "%02X ", desc_report[i]);
+ for (uint32_t i = 0; i < size; i++) {
+ TU_LOG(3, "%02X ", desc_report[i]);
+ }
TU_LOG(3, "\r\n");
switch (type) {