diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2003-10-21 17:05:17 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2003-10-21 17:05:17 +0000 |
commit | 4b104816c9e657438da9df257da8df37de87b132 (patch) | |
tree | 3cfecc05b4434605e188bc4670689873d60cf1a5 /sys | |
parent | 30cadb3ca071add609e7030364d55d341aa99b71 (diff) |
This was changed from a magic number to a define in the header file,
but this one was missed.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/macppc/macppc/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/macppc/machdep.c b/sys/arch/macppc/macppc/machdep.c index 20db259702f..32485466352 100644 --- a/sys/arch/macppc/macppc/machdep.c +++ b/sys/arch/macppc/macppc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.58 2003/10/16 05:03:22 deraadt Exp $ */ +/* $OpenBSD: machdep.c,v 1.59 2003/10/21 17:05:16 drahn Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -821,7 +821,7 @@ dumpsys() } volatile int cpl, ipending, astpending; -int imask[7]; +int imask[IPL_NUM]; /* * this is a hack interface to allow zs to work better until |