Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rbiasini committed Jul 3, 2019
1 parent 385e33b commit 7cd80de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion board/drivers/uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ void putui(uint32_t i) {
str[idx] = (i_copy % 10) + 0x30;
idx--;
i_copy /= 10;
} while ((i / 10) != 0);
} while (i_copy != 0);
puts(str + idx + 1);
}

Expand Down

0 comments on commit 7cd80de

Please sign in to comment.