Newline-terminate the complaint message about not being able to find

the root vnode pointer.
This commit is contained in:
Mike Smith 1999-11-01 23:57:28 +00:00
parent b7017a8210
commit 6d14782861
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52782
6 changed files with 6 additions and 6 deletions

View file

@ -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;

View file

@ -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);

View file

@ -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);

View file

@ -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;

View file

@ -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);
}

View file

@ -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);
}