summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2010-08-18 14:04:17 +0000
committerJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2010-08-18 14:04:17 +0000
commit55a3e19252125853afa70179f8334e4b7a9f4a51 (patch)
treec1a2c3804d097c8b7dbf7ca4e60c1c0de78103b4 /sys
parentdff411a74bb3ab335d530a10a5f17064cb2f4530 (diff)
- fix compilation of kernel without FFS...don't ask ;-)
ok jsing@
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/subr_disk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/subr_disk.c b/sys/kern/subr_disk.c
index be255ccede3..df64b68f465 100644
--- a/sys/kern/subr_disk.c
+++ b/sys/kern/subr_disk.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_disk.c,v 1.104 2010/06/27 00:14:06 jsing Exp $ */
+/* $OpenBSD: subr_disk.c,v 1.105 2010/08/18 14:04:16 jasper Exp $ */
/* $NetBSD: subr_disk.c,v 1.17 1996/03/16 23:17:08 christos Exp $ */
/*
@@ -965,8 +965,8 @@ dk_mountroot(void)
mountrootfn = ffs_mountroot;
}
#else
- panic("disk 0x%x/0x%x filesystem type %d not known",
- rootdev, rrootdev, dl.d_partitions[part].p_fstype);
+ panic("disk 0x%x filesystem type %d not known",
+ rootdev, dl.d_partitions[part].p_fstype);
#endif
}
return (*mountrootfn)();