32 bit cleanup, because this code is going to be copied by other ports soon
authorderaadt <deraadt@openbsd.org>
Thu, 12 Dec 1996 07:44:55 +0000 (07:44 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 12 Dec 1996 07:44:55 +0000 (07:44 +0000)
sys/arch/i386/isa/isa_machdep.c

index e8f4b62..134f798 100644 (file)
@@ -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)))