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/fs/cd9660 | |
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/fs/cd9660')
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 2 |
1 files changed, 1 insertions, 1 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; |