From 95124bf9331e67a7373ed4e3fc4d14f23e18a85b Mon Sep 17 00:00:00 2001 From: QMK Bot Date: Sun, 1 Mar 2020 19:20:09 +0000 Subject: [PATCH] format code according to conventions [skip ci] --- tmk_core/common/chibios/printf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmk_core/common/chibios/printf.c b/tmk_core/common/chibios/printf.c index 17c1e6341..a99752bb3 100644 --- a/tmk_core/common/chibios/printf.c +++ b/tmk_core/common/chibios/printf.c @@ -98,8 +98,8 @@ static int a2d(char ch) { static char a2i(char ch, const char** src, int base, int* nump) { const char* p = *src; - int num = 0; - int digit; + int num = 0; + int digit; while ((digit = a2d(ch)) >= 0) { if (digit > base) break; num = num * base + digit;