diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2005-11-23 01:59:03 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2005-11-23 01:59:03 +0000 |
commit | b4b298ebd16b2e5a1370290887b1157f3982ea3b (patch) | |
tree | fe19f51e7df119ccf20673b68cc785996697bd52 /sys | |
parent | ab93a6effa55c9c44012714d7823d9d4cb9934fb (diff) |
fix DEBUG build
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/alpha/machdep.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c index 5db767b50d4..397c90cbad9 100644 --- a/sys/arch/alpha/alpha/machdep.c +++ b/sys/arch/alpha/alpha/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.94 2005/11/12 18:39:19 martin Exp $ */ +/* $OpenBSD: machdep.c,v 1.95 2005/11/23 01:59:02 martin Exp $ */ /* $NetBSD: machdep.c,v 1.210 2000/06/01 17:12:38 thorpej Exp $ */ /*- @@ -1673,6 +1673,9 @@ sys_sigreturn(p, v, retval) syscallarg(struct sigcontext *) sigcntxp; } */ *uap = v; struct sigcontext ksc; +#ifdef DEBUG + struct sigcontext *scp; +#endif int error; #ifdef DEBUG |