From: deraadt Date: Thu, 12 Dec 1996 07:44:55 +0000 (+0000) Subject: 32 bit cleanup, because this code is going to be copied by other ports soon X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=92899c7055c97a753e7053bbff5f37c49a4a1291;p=openbsd 32 bit cleanup, because this code is going to be copied by other ports soon --- 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)))