summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1999-11-01 23:57:28 +0000
committerMike Smith <msmith@FreeBSD.org>1999-11-01 23:57:28 +0000
commit6d1478286125a5c659cf7c3538d2b366f3277e70 (patch)
treefc341e259494bd30f63e8f6d29bd5bbe6624de0b /sys
parentb7017a821026b7db5f6a42754befdd8a92e5041e (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/fs/cd9660/cd9660_vfsops.c2
-rw-r--r--sys/gnu/ext2fs/ext2_vfsops.c2
-rw-r--r--sys/gnu/fs/ext2fs/ext2_vfsops.c2
-rw-r--r--sys/isofs/cd9660/cd9660_vfsops.c2
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c2
-rw-r--r--sys/ufs/mfs/mfs_vfsops.c2
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);
}