From 6f923c1495b2546b7a2b0aa353f9f1e75f37d5f2 Mon Sep 17 00:00:00 2001 From: fvdl Date: Fri, 29 Nov 2002 19:33:26 +0000 Subject: [PATCH] Use long for ssym and esym in btinfo_symtab, so that it works out for both i386 and x86_64. --- 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 50ed4fce94bb..84cf764a0715 100644 --- a/sys/arch/i386/include/bootinfo.h +++ b/sys/arch/i386/include/bootinfo.h @@ -1,4 +1,4 @@ -/* $NetBSD: bootinfo.h,v 1.8 2000/06/02 18:27:47 thorpej Exp $ */ +/* $NetBSD: bootinfo.h,v 1.9 2002/11/29 19:33:26 fvdl Exp $ */ /* * Copyright (c) 1997 @@ -85,8 +85,8 @@ struct btinfo_console { struct btinfo_symtab { struct btinfo_common common; int nsym; - int ssym; - int esym; + long ssym; + long esym; }; struct bi_memmap_entry {