Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/i386/include Think before committing.. previous was...
details: https://anonhg.NetBSD.org/src/rev/faaaa4571fe5
branches: trunk
changeset: 539940:faaaa4571fe5
user: fvdl <fvdl%NetBSD.org@localhost>
date: Fri Nov 29 19:38:24 2002 +0000
description:
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.
diffstat:
sys/arch/i386/include/bootinfo.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r af1e62c48900 -r faaaa4571fe5 sys/arch/i386/include/bootinfo.h
--- a/sys/arch/i386/include/bootinfo.h Fri Nov 29 19:35:25 2002 +0000
+++ b/sys/arch/i386/include/bootinfo.h Fri Nov 29 19:38:24 2002 +0000
@@ -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_symtab {
struct btinfo_common common;
int nsym;
- long ssym;
- long esym;
+ int ssym;
+ int esym;
};
struct bi_memmap_entry {
Home |
Main Index |
Thread Index |
Old Index