diff options
| author | dsl <dsl@NetBSD.org> | 2004-07-17 19:36:59 +0000 |
|---|---|---|
| committer | dsl <dsl@NetBSD.org> | 2004-07-17 19:36:59 +0000 |
| commit | e0683ac0f323cff9a4d4a32a94de72d70288b63e (patch) | |
| tree | 325b4687adafd8e7c529bd93067aed04c0aa861b /distrib/utils/sysinst/mbr.h | |
| parent | 9074ea7ce0759571c8d633c89ce586397b178829 (diff) | |
Kill two more global variables, bsize (bios disk size) was never used
and bcylsize (bios cylinder size) can be calculated in the one place
it is needed.
The ask_sizemult() call will go once I decide what to to with the
(slightly useful) explanatory text about cylinder alignment.
Diffstat (limited to 'distrib/utils/sysinst/mbr.h')
| -rw-r--r-- | distrib/utils/sysinst/mbr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/utils/sysinst/mbr.h b/distrib/utils/sysinst/mbr.h index 3f000587223..df4fa566920 100644 --- a/distrib/utils/sysinst/mbr.h +++ b/distrib/utils/sysinst/mbr.h @@ -1,4 +1,4 @@ -/* $NetBSD: mbr.h,v 1.20 2004/06/06 06:06:59 christos Exp $ */ +/* $NetBSD: mbr.h,v 1.21 2004/07/17 19:36:59 dsl Exp $ */ /* * Copyright 1997, 1988 Piermont Information Systems Inc. @@ -78,7 +78,7 @@ struct mbr_info_t { }; /* incore fdisk (mbr, bios) geometry */ -int bcyl, bhead, bsec, bsize, bcylsize; +int bcyl, bhead, bsec; mbr_info_t mbr; |
