From 851c29f653952a54d6aa7c3b368161e8e2aa120f Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Tue, 31 Dec 2019 11:45:19 +0000 Subject: [PATCH] riscv: Remove unused variable Fix the build that was broken by r356221. Pointy hat to myself. --- sys/riscv/riscv/mp_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/riscv/riscv/mp_machdep.c b/sys/riscv/riscv/mp_machdep.c index 86313e8547bc..322121510b3e 100644 --- a/sys/riscv/riscv/mp_machdep.c +++ b/sys/riscv/riscv/mp_machdep.c @@ -185,7 +185,7 @@ static void release_aps(void *dummy __unused) { cpuset_t mask; - int cpu, i; + int i; if (mp_ncpus == 1) return;