From 88bf7ca80c28d28342782bf6df46ff703611009e Mon Sep 17 00:00:00 2001 From: rwatson Date: Fri, 18 Feb 2005 21:39:55 +0000 Subject: [PATCH] Remove now unused 'int s' from spl(). MFC after: 3 days --- sys/kern/uipc_syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/uipc_syscalls.c b/sys/kern/uipc_syscalls.c index f6e08e770bcd..89e55ccc2cf0 100644 --- a/sys/kern/uipc_syscalls.c +++ b/sys/kern/uipc_syscalls.c @@ -501,7 +501,7 @@ kern_connect(td, fd, sa) { struct socket *so; struct file *fp; - int error, s; + int error; int interrupted = 0; NET_LOCK_GIANT();