diff options
author | bde <bde@FreeBSD.org> | 1996-07-12 05:35:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-07-12 05:35:47 +0000 |
commit | d466fe807088b3336bfc3292783227a8037f2d5f (patch) | |
tree | 87c0f1584beedd6e86646bfca6d36e957668a59d | |
parent | cd111495aa801a369c5c4d582a6ef42c45c08911 (diff) | |
download | FreeBSD-src-d466fe807088b3336bfc3292783227a8037f2d5f.zip FreeBSD-src-d466fe807088b3336bfc3292783227a8037f2d5f.tar.gz |
Moved the definition of `bsize' out of a DO_BAD144 ifdef so that this
compiles when DO_BAD144 is not defined.
-rw-r--r-- | sys/i386/boot/biosboot/disk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/boot/biosboot/disk.c b/sys/i386/boot/biosboot/disk.c index f6630dd..f64c398 100644 --- a/sys/i386/boot/biosboot/disk.c +++ b/sys/i386/boot/biosboot/disk.c @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:49 rpd - * $Id: disk.c,v 1.15 1995/09/16 05:02:37 nate Exp $ + * $Id: disk.c,v 1.16 1995/09/16 13:03:59 bde Exp $ */ /* @@ -54,8 +54,8 @@ #ifdef DO_BAD144 struct dkbad dkb; int do_bad144; -int bsize; #endif DO_BAD144 +int bsize; int spt, spc; |