From ad42c2a5fde7c16b68b55829c86e22f8678c1bc2 Mon Sep 17 00:00:00 2001 From: Yoshihiro Takahashi Date: Sun, 8 May 2005 11:15:38 +0000 Subject: [PATCH] Use DOSMID_386BSD rather than DOSPTYP_386BSD. --- sys/boot/pc98/boot2/disk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/pc98/boot2/disk.c b/sys/boot/pc98/boot2/disk.c index f892c276ce9..835fff0196d 100644 --- a/sys/boot/pc98/boot2/disk.c +++ b/sys/boot/pc98/boot2/disk.c @@ -103,7 +103,7 @@ devopen(void) dptr = (struct pc98_partition *)p; slice = WHOLE_DISK_SLICE; for (i = 0; i < NDOSPART; i++, dptr++) - if (dptr->dp_mid == DOSPTYP_386BSD) { + if (dptr->dp_mid == DOSMID_386BSD) { slice = BASE_SLICE + i; sector = dptr->dp_scyl * spc; break;