summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-11-01 13:37:56 +0700
committerhathach <[email protected]>2020-11-01 13:37:56 +0700
commit67ac40b98d217dde82090bf10a0cf55af5d1c44b (patch)
tree3e0e9c25134055995dc0d9ef03a9134b82f2998e /src/common
parent8f0f2d1863036521422b3eb840a98c3aa7fdff2e (diff)
house keeping: make tu_print_mem format easier to compare with hex2dump
Diffstat (limited to 'src/common')
-rw-r--r--src/common/tusb_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tusb_common.h b/src/common/tusb_common.h
index 15892fa33..f10be88ab 100644
--- a/src/common/tusb_common.h
+++ b/src/common/tusb_common.h
@@ -213,7 +213,7 @@ static inline bool tu_bit_test (uint32_t value, uint8_t pos) { return (value
// 2 : print out log
#if CFG_TUSB_DEBUG
-void tu_print_mem(void const *buf, uint16_t count, uint8_t indent);
+void tu_print_mem(void const *buf, uint32_t count, uint8_t indent);
#ifdef CFG_TUSB_DEBUG_PRINTF
extern int CFG_TUSB_DEBUG_PRINTF(const char *format, ...);