From 6da80341650d4a4aa7325e6d347929cb02ecf321 Mon Sep 17 00:00:00 2001 From: fvdl Date: Fri, 29 Nov 2002 19:38:24 +0000 Subject: [PATCH] Think before committing.. previous wasn't actually needed, the values are guaranteed to fit in 32 bits when loading the kernel into physmem, and it avoids bootloader incompatibility. --- sys/arch/i386/include/bootinfo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/i386/include/bootinfo.h b/sys/arch/i386/include/bootinfo.h index 84cf764a0715..57ce9e276c97 100644 --- a/sys/arch/i386/include/bootinfo.h +++ b/sys/arch/i386/include/bootinfo.h @@ -1,4 +1,4 @@ -/* $NetBSD: bootinfo.h,v 1.9 2002/11/29 19:33:26 fvdl Exp $ */ +/* $NetBSD: bootinfo.h,v 1.10 2002/11/29 19:38:24 fvdl Exp $ */ /* * Copyright (c) 1997 @@ -85,8 +85,8 @@ struct btinfo_console { struct btinfo_symtab { struct btinfo_common common; int nsym; - long ssym; - long esym; + int ssym; + int esym; }; struct bi_memmap_entry {