summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2004-11-20 11:56:35 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2004-11-20 11:56:35 +0000
commit08d408e24b3317746da82f670e701edab5fa7687 (patch)
treede55536e898cdbdff5e6478dc1f1c6b9f6aa2d0f
parentf208f8989f2f11d95eb8e92dd6be012f1364c3df (diff)
downloadfuse-08d408e24b3317746da82f670e701edab5fa7687.tar.gz
fix
-rw-r--r--lib/fuse.c2
-rw-r--r--util/fusermount.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index 236a018..bf345b6 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -1712,7 +1712,7 @@ static int check_version(struct fuse *f)
return -1;
}
if (f->minorver < FUSE_KERNEL_MINOR_VERSION) {
- fprintf(stderr, "fuse: kernel interface too old: need >= %i.%i",
+ fprintf(stderr, "fuse: kernel interface too old: need >= %i.%i\n",
FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
return -1;
}
diff --git a/util/fusermount.c b/util/fusermount.c
index 39eb478..98a705b 100644
--- a/util/fusermount.c
+++ b/util/fusermount.c
@@ -239,8 +239,8 @@ static int remove_mount(const char *mnt, int quiet, int lazy)
else {
res = addmntent(newfp, entp);
if (res != 0) {
- fprintf(stderr, "%s: failed to add entry to %s: %s", progname,
- mtab_new, strerror(errno));
+ fprintf(stderr, "%s: failed to add entry to %s: %s\n",
+ progname, mtab_new, strerror(errno));
}
}