diff options
author | 2010-08-18 14:04:16 +0000 | |
---|---|---|
committer | 2010-08-18 14:04:16 +0000 | |
commit | 94e523d975d46d155f198e5402550574a9fa4571 (patch) | |
tree | cc4c023e76c0ca89fc426f8e2e8bd7461e05c0c7 /sys/kern/subr_disk.c | |
parent | Remove the standard pod2man \*(C+ pre-predefined string ("C++"). (diff) | |
download | wireguard-openbsd-94e523d975d46d155f198e5402550574a9fa4571.tar.xz wireguard-openbsd-94e523d975d46d155f198e5402550574a9fa4571.zip |
- fix compilation of kernel without FFS...don't ask ;-)
ok jsing@
Diffstat (limited to 'sys/kern/subr_disk.c')
-rw-r--r-- | sys/kern/subr_disk.c | 6 |
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)(); |