Skip to content

Commit

Permalink
format code according to conventions [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot authored and kujawakk committed Apr 21, 2020
1 parent 948959f commit 38ee72c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tmk_core/common/chibios/printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 38ee72c

Please sign in to comment.