aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/pc98/pc98/atcompat_diskslice.c6
-rw-r--r--sys/pc98/pc98/diskslice_machdep.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/pc98/pc98/atcompat_diskslice.c b/sys/pc98/pc98/atcompat_diskslice.c
index 15cffc065a1f..e88be98e72c3 100644
--- a/sys/pc98/pc98/atcompat_diskslice.c
+++ b/sys/pc98/pc98/atcompat_diskslice.c
@@ -35,7 +35,7 @@
*
* from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91
* from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $
- * $Id: atcompat_diskslice.c,v 1.9 1998/07/11 17:01:24 kato Exp $
+ * $Id: atcompat_diskslice.c,v 1.10 1998/07/21 12:06:04 kato Exp $
*/
/*
@@ -197,7 +197,7 @@ reread_mbr:
(*strat)(bp);
if (biowait(bp) != 0) {
diskerr(bp, dname, "error reading primary partition table",
- LOG_PRINTF, 0, lp);
+ LOG_PRINTF, 0, (struct disklabel *)NULL);
printf("\n");
error = EIO;
goto done;
@@ -391,7 +391,7 @@ atcompat_extended(dname, dev, strat, lp, ssp, ext_offset, ext_size,
(*strat)(bp);
if (biowait(bp) != 0) {
diskerr(bp, dname, "error reading extended partition table",
- LOG_PRINTF, 0, lp);
+ LOG_PRINTF, 0, (struct disklabel *)NULL);
printf("\n");
goto done;
}
diff --git a/sys/pc98/pc98/diskslice_machdep.c b/sys/pc98/pc98/diskslice_machdep.c
index 31510b3bee9d..1d976fa353ee 100644
--- a/sys/pc98/pc98/diskslice_machdep.c
+++ b/sys/pc98/pc98/diskslice_machdep.c
@@ -35,7 +35,7 @@
*
* from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91
* from: ufs_disksubr.c,v 1.8 1994/06/07 01:21:39 phk Exp $
- * $Id: diskslice_machdep.c,v 1.13 1998/07/11 17:01:25 kato Exp $
+ * $Id: diskslice_machdep.c,v 1.14 1998/07/21 12:06:04 kato Exp $
*/
/*
@@ -250,7 +250,7 @@ reread_mbr:
(*strat)(bp);
if (biowait(bp) != 0) {
diskerr(bp, dname, "error reading primary partition table",
- LOG_PRINTF, 0, lp);
+ LOG_PRINTF, 0, (struct disklabel *)NULL);
printf("\n");
error = EIO;
goto done;
@@ -540,7 +540,7 @@ extended(dname, dev, strat, lp, ssp, ext_offset, ext_size, base_ext_offset,
(*strat)(bp);
if (biowait(bp) != 0) {
diskerr(bp, dname, "error reading extended partition table",
- LOG_PRINTF, 0, lp);
+ LOG_PRINTF, 0, (struct disklabel *)NULL);
printf("\n");
goto done;
}