From 1dee12e58e7116d2746ba6022135e18e7fa9345e Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 27 Jul 2015 00:40:14 +0200 Subject: [PATCH] Fix typo in initrd extraction failure panic. --- kernel/kernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/kernel.cpp b/kernel/kernel.cpp index 48959e5f..b6aba4ff 100644 --- a/kernel/kernel.cpp +++ b/kernel/kernel.cpp @@ -520,7 +520,7 @@ static void BootThread(void* /*user*/) // Install the initrd into our fresh RAM filesystem. if ( !InitRD::ExtractFromPhysicalInto(initrd, initrdsize, droot) ) - Panic("Unable to extract initrd into RAM root filesystem. You machine " + Panic("Unable to extract initrd into RAM root filesystem. Your machine " "needs more memory to boot using this initrd, as a rule of thumb " "you need twice as much memory as the size of the initrd device.");