1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

remove typo

This commit is contained in:
Stefan Lankes 2015-08-17 12:49:33 +02:00
parent 03111d7ef1
commit b8ecff4e4d

View file

@ -100,7 +100,7 @@ static void print_status(void)
static spinlock_t status_lock = SPINLOCK_INIT;
spinlock_lock(&status_lock);
kprintf("%d CPU is now online (CR0 0x%zx, CR4 0x%zx)\n", CORE_ID, read_cr0(), read_cr4());
kprintf("CPU %d is now online (CR0 0x%zx, CR4 0x%zx)\n", CORE_ID, read_cr0(), read_cr4());
spinlock_unlock(&status_lock);
}