aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmk_core/common/chibios/printf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmk_core/common/chibios/printf.c b/tmk_core/common/chibios/printf.c
index dcf33f35f..3a81acd31 100644
--- a/tmk_core/common/chibios/printf.c
+++ b/tmk_core/common/chibios/printf.c
@@ -120,7 +120,8 @@ static void putchw(void* putp, putcf putf, int n, char z, char* bf) {
120} 120}
121 121
122void tfp_format(void* putp, putcf putf, char* fmt, va_list va) { 122void tfp_format(void* putp, putcf putf, char* fmt, va_list va) {
123 char bf[12]; 123 // This used to handle max of 12, but binary support jumps this to at least 32
124 char bf[36];
124 125
125 char ch; 126 char ch;
126 127