From b8ecff4e4d88e40da15637307083978444f8bb79 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 17 Aug 2015 12:49:33 +0200 Subject: [PATCH] remove typo --- hermit/kernel/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermit/kernel/main.c b/hermit/kernel/main.c index da72db1ce..24a66d36e 100644 --- a/hermit/kernel/main.c +++ b/hermit/kernel/main.c @@ -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); }