From c36e70686eafdc07467a3ce7697cedee82cd3967 Mon Sep 17 00:00:00 2001 From: msmith Date: Mon, 1 Nov 1999 23:57:28 +0000 Subject: [PATCH] Newline-terminate the complaint message about not being able to find the root vnode pointer. --- sys/fs/cd9660/cd9660_vfsops.c | 2 +- sys/gnu/ext2fs/ext2_vfsops.c | 2 +- sys/gnu/fs/ext2fs/ext2_vfsops.c | 2 +- sys/isofs/cd9660/cd9660_vfsops.c | 2 +- sys/ufs/ffs/ffs_vfsops.c | 2 +- sys/ufs/mfs/mfs_vfsops.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index 6fa36f46708c..5a6f8516fe61 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -149,7 +149,7 @@ iso_mountroot(mp, p) int error; if ((error = bdevvp(rootdev, &rootvp))) { - printf("iso_mountroot: can't find rootvp"); + printf("iso_mountroot: can't find rootvp\n"); return (error); } args.flags = ISOFSMNT_ROOT; diff --git a/sys/gnu/ext2fs/ext2_vfsops.c b/sys/gnu/ext2fs/ext2_vfsops.c index 4d68ecb55862..6f2e4870615a 100644 --- a/sys/gnu/ext2fs/ext2_vfsops.c +++ b/sys/gnu/ext2fs/ext2_vfsops.c @@ -128,7 +128,7 @@ ext2_mountroot() int error; if ((error = bdevvp(rootdev, &rootvp))) { - printf("ext2_mountroot: can't find rootvp"); + printf("ext2_mountroot: can't find rootvp\n"); return (error); } mp = bsd_malloc((u_long)sizeof(struct mount), M_MOUNT, M_WAITOK); diff --git a/sys/gnu/fs/ext2fs/ext2_vfsops.c b/sys/gnu/fs/ext2fs/ext2_vfsops.c index 4d68ecb55862..6f2e4870615a 100644 --- a/sys/gnu/fs/ext2fs/ext2_vfsops.c +++ b/sys/gnu/fs/ext2fs/ext2_vfsops.c @@ -128,7 +128,7 @@ ext2_mountroot() int error; if ((error = bdevvp(rootdev, &rootvp))) { - printf("ext2_mountroot: can't find rootvp"); + printf("ext2_mountroot: can't find rootvp\n"); return (error); } mp = bsd_malloc((u_long)sizeof(struct mount), M_MOUNT, M_WAITOK); diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 6fa36f46708c..5a6f8516fe61 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -149,7 +149,7 @@ iso_mountroot(mp, p) int error; if ((error = bdevvp(rootdev, &rootvp))) { - printf("iso_mountroot: can't find rootvp"); + printf("iso_mountroot: can't find rootvp\n"); return (error); } args.flags = ISOFSMNT_ROOT; diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index e5897dc7fb68..e1330973623f 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -152,7 +152,7 @@ ffs_mount( mp, path, data, ndp, p) */ if ((err = bdevvp(rootdev, &rootvp))) { - printf("ffs_mountroot: can't find rootvp"); + printf("ffs_mountroot: can't find rootvp\n"); return (err); } diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index 0355d578c7d7..9b35b462384d 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -231,7 +231,7 @@ mfs_mount(mp, path, data, ndp, p) printf("rootfs is %ld Kbyte compiled in MFS\n", mfs_rootsize/1024); if ((err = bdevvp(rootdev, &rootvp))) { - printf("mfs_mount: can't find rootvp - "); + printf("mfs_mount: can't find rootvp\n"); return (err); }