Skip to content

Commit b3cd2f8

Browse files
committed
fix(core): increasing the buffer length in "dbg_console_vprintf()" function from 80B to 160B. It will improve the debug messages' usage.
[no changelog]
1 parent 050e4ec commit b3cd2f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/embed/sys/dbg/dbg_console.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <sys/dbg_console.h>
2424

2525
void dbg_console_vprintf(const char *fmt, va_list args) {
26-
char temp[80];
26+
char temp[160];
2727
mini_vsnprintf(temp, sizeof(temp), fmt, args);
2828
dbg_console_write(temp, strnlen(temp, sizeof(temp)));
2929
}

0 commit comments

Comments
 (0)