From b951e1fb280de003a48bdbccc5ade886dd07c246 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 20 Feb 2015 20:38:47 +0000 Subject: [PATCH] bankfixed: fix panic use --- Kernel/bankfixed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/bankfixed.c b/Kernel/bankfixed.c index c0f2445b..ff5f6ecd 100644 --- a/Kernel/bankfixed.c +++ b/Kernel/bankfixed.c @@ -95,7 +95,7 @@ int swapout(ptptr p) swapproc = p; if (!page) - panic("%x: process already swapped!\n", p); + panic("process already swapped!\n"); #ifdef DEBUG kprintf("Swapping out %x (%d)\n", p, p->p_page); #endif -- 2.34.1