diff options
author | msmith <msmith@FreeBSD.org> | 1999-11-01 23:57:28 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1999-11-01 23:57:28 +0000 |
commit | c36e70686eafdc07467a3ce7697cedee82cd3967 (patch) | |
tree | fc341e259494bd30f63e8f6d29bd5bbe6624de0b /sys | |
parent | 2ba600f7675082d5e06fef618e50d6725f0492d1 (diff) | |
download | FreeBSD-src-c36e70686eafdc07467a3ce7697cedee82cd3967.zip FreeBSD-src-c36e70686eafdc07467a3ce7697cedee82cd3967.tar.gz |
Newline-terminate the complaint message about not being able to find
the root vnode pointer.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 2 | ||||
-rw-r--r-- | sys/gnu/ext2fs/ext2_vfsops.c | 2 | ||||
-rw-r--r-- | sys/gnu/fs/ext2fs/ext2_vfsops.c | 2 | ||||
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 2 | ||||
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 2 | ||||
-rw-r--r-- | 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 6fa36f4..5a6f851 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 4d68ecb..6f2e487 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 4d68ecb..6f2e487 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 6fa36f4..5a6f851 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 e5897dc..e133097 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 0355d57..9b35b46 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); } |