diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-12 07:44:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-12 07:44:56 +0000 |
commit | a594041ca156b8a0301d8427d5cdf2086a23ae65 (patch) | |
tree | 577adf3873552bb71332a13c6df1c120d68f0d47 /sys | |
parent | 0cc5d3ea85361983bab9a84ff271d6e98b1cb4eb (diff) |
32 bit cleanup, because this code is going to be copied by other ports soon
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/isa/isa_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/isa/isa_machdep.c b/sys/arch/i386/isa/isa_machdep.c index e8f4b62f11e..134f7984f07 100644 --- a/sys/arch/i386/isa/isa_machdep.c +++ b/sys/arch/i386/isa/isa_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isa_machdep.c,v 1.17 1996/10/16 12:46:27 deraadt Exp $ */ +/* $OpenBSD: isa_machdep.c,v 1.18 1996/12/12 07:44:55 deraadt Exp $ */ /* $NetBSD: isa_machdep.c,v 1.14 1996/05/12 23:06:18 mycroft Exp $ */ /*- @@ -350,7 +350,7 @@ isa_attach_hook(parent, self, iba) #define MAX_CHUNK 256 /* number of low memory segments */ -static unsigned long bitmap[MAX_CHUNK / 32 + 1]; +static u_int32_t bitmap[MAX_CHUNK / 32 + 1]; #define set(i) (bitmap[(i) >> 5] |= (1 << (i))) #define clr(i) (bitmap[(i) >> 5] &= ~(1 << (i))) |