diff options
| author | David <dbphillipsnz@gmail.com> | 2013-11-11 21:48:59 +1300 |
|---|---|---|
| committer | David <dbphillipsnz@gmail.com> | 2014-03-27 20:32:48 +1300 |
| commit | f5bbf7cf9bd1eff316fd5b2d2ed71abbb49a7ecd (patch) | |
| tree | f9af4cbe30519be76851e5114c14d6a958a07263 /screen | |
| parent | b707eed2ccab33aa5c008a84d4a74788b4b2e52d (diff) | |
| download | toast-f5bbf7cf9bd1eff316fd5b2d2ed71abbb49a7ecd.tar.xz | |
Fixed console_print()/printf() issue
Diffstat (limited to 'screen')
| -rw-r--r-- | screen/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screen/console.c b/screen/console.c index 00e9ebb..da5cf9a 100644 --- a/screen/console.c +++ b/screen/console.c @@ -174,7 +174,7 @@ void console_print(const char* format, ...) console_print_char(va_arg(strings, uint64_t)); break; case 'd': - console_print_num(va_arg(strings, uint64_t),10); + console_print_num(va_arg(strings, uint32_t),10); break; case 'x': console_print_num(va_arg(strings, uint64_t),16); |
