diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-20 12:22:37 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-20 12:22:37 +0000 |
commit | 256739a410f38f424e30011e329e41647f3cd9ff (patch) | |
tree | a63030335ff809c9aee117c57d02b85e8705c6b1 /util/fusermount.c | |
parent | f3845c478b3c1eb16668d587a2a1d002b72401a5 (diff) | |
download | libfuse-256739a410f38f424e30011e329e41647f3cd9ff.tar.gz |
fix
Diffstat (limited to 'util/fusermount.c')
-rw-r--r-- | util/fusermount.c | 4 |
1 files changed, 2 insertions, 2 deletions
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)); } } |