remove duplicate x0 from kprintf. kprint_hex handles that
This commit is contained in:
parent
af57366544
commit
798aed2a39
1 changed files with 0 additions and 1 deletions
|
|
@ -103,7 +103,6 @@ void kprintf(const char *format, ...) {
|
|||
case 'x': // Hex
|
||||
case 'p': { // Pointer
|
||||
uint64_t x = va_arg(args, uint64_t);
|
||||
kputchar('0'); kputchar('x');
|
||||
kprint_hex(x);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue