diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-10-20 14:47:43 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-10-20 14:47:43 +0000 |
commit | 0107ab8ff90c44a590c939422a0ef954c0db5215 (patch) | |
tree | 4e199b76905228b51e41c6c89203fb718d751b0e /sys/arch/i386/include | |
parent | caf9c83a5e8998da00479367b3b05b62671980dd (diff) |
get ready for the fix in memprobe
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r-- | sys/arch/i386/include/biosvar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/i386/include/biosvar.h b/sys/arch/i386/include/biosvar.h index 1f3cb40d602..d4ea9e94c01 100644 --- a/sys/arch/i386/include/biosvar.h +++ b/sys/arch/i386/include/biosvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: biosvar.h,v 1.19 1997/10/18 00:33:14 weingart Exp $ */ +/* $OpenBSD: biosvar.h,v 1.20 1997/10/20 14:47:41 mickey Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -125,9 +125,9 @@ struct EDD_CB { }; typedef struct _bios_memmap { - u_int32_t addr; /* Beginning of block */ - u_int32_t size; /* Size of block */ - int type; /* Type of block */ + u_int64_t addr; /* Beginning of block */ + u_int64_t size; /* Size of block */ + u_int32_t type; /* Type of block */ } bios_memmap_t; /* Info about disk from the bios, plus the mapping from |