From: Alan Cox Date: Fri, 30 Jan 2015 00:24:03 +0000 (+0000) Subject: swap.c: fix unused argument warning X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=336878f81dedfa0b0ac7cea44f1fdd136e1aae69;p=FUZIX.git swap.c: fix unused argument warning --- diff --git a/Kernel/swap.c b/Kernel/swap.c index 8f206f0c..7c592398 100644 --- a/Kernel/swap.c +++ b/Kernel/swap.c @@ -191,7 +191,7 @@ static ptptr swapvictim(ptptr p, int notself) return udata.u_ptab; return r; #else - p; + used(p); if (notself) panic("bad notself\n"); return udata.u_ptab;