From e68c0dd24922b80c65c9c4120720b13cd27661a4 Mon Sep 17 00:00:00 2001 From: marcel Date: Thu, 27 Jul 2000 01:22:24 +0000 Subject: Remove the only use of SCARG and perform dead code elimination. --- sys/alpha/linux/linux_sysvec.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/alpha/linux/linux_sysvec.c') diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index 052885b..c739f69 100644 --- a/sys/alpha/linux/linux_sysvec.c +++ b/sys/alpha/linux/linux_sysvec.c @@ -323,7 +323,7 @@ linux_sigreturn(p, args) struct proc *p; struct linux_sigreturn_args *args; { - struct linux_sigcontext *scp, context; + struct linux_sigcontext context; register struct trapframe *regs; int eflags; @@ -338,8 +338,7 @@ linux_sigreturn(p, args) * It is unsafe to keep track of it ourselves, in the event that a * program jumps out of a signal handler. */ - scp = SCARG(args,scp); - if (copyin((caddr_t)scp, &context, sizeof(*scp)) != 0) + if (copyin((caddr_t)args->scp, &context, sizeof(context)) != 0) return (EFAULT); /* -- cgit v1.1