Newline-terminate the complaint message about not being able to find
the root vnode pointer.
This commit is contained in:
parent
2ba600f767
commit
c36e70686e
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user