~ruther/qmk_firmware

95124bf9331e67a7373ed4e3fc4d14f23e18a85b — QMK Bot 5 years ago e7fb873
format code according to conventions [skip ci]
1 files changed, 2 insertions(+), 2 deletions(-)

M tmk_core/common/chibios/printf.c
M tmk_core/common/chibios/printf.c => tmk_core/common/chibios/printf.c +2 -2
@@ 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;