fix
authorMiklos Szeredi <miklos@szeredi.hu>
Sat, 20 Nov 2004 11:56:35 +0000 (11:56 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Sat, 20 Nov 2004 11:56:35 +0000 (11:56 +0000)
lib/fuse.c
util/fusermount.c

index 236a018a8b7152071cca4bc6ebb18935c78d0d35..bf345b62bd91466eccac86500ba82d2c1716e214 100644 (file)
@@ -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;
     }    
index 39eb478f3840f3c1423901cd1e8c9cd31d6d935a..98a705b448ef2015532985ce2dd2cad19bf3c3a6 100644 (file)
@@ -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));
                 
             }
         }