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/gnu | |
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/gnu')
-rw-r--r-- | sys/gnu/ext2fs/ext2_vfsops.c | 2 | ||||
-rw-r--r-- | sys/gnu/fs/ext2fs/ext2_vfsops.c | 2 |
2 files changed, 2 insertions, 2 deletions
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); |