From a594041ca156b8a0301d8427d5cdf2086a23ae65 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Thu, 12 Dec 1996 07:44:56 +0000 Subject: 32 bit cleanup, because this code is going to be copied by other ports soon --- sys/arch/i386/isa/isa_machdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys') 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))) -- cgit v1.2.3