From: Karel Zak Date: Tue, 23 Oct 2007 18:45:22 +0000 (+0200) Subject: mount: remove redundant fflush X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=552aff4d1ae77210c2fc234629ba28c0744be9bc;p=util-linux mount: remove redundant fflush Signed-off-by: Karel Zak --- diff --git a/mount/fsprobe.c b/mount/fsprobe.c index 9808fbeb..b874f9d7 100644 --- a/mount/fsprobe.c +++ b/mount/fsprobe.c @@ -140,10 +140,8 @@ fsprobe_procfsloop_mount(int (*mount_fn)(struct mountargs *, int *, int *), continue; set_tested (fsname); args->type = fsname; - if (verbose) { + if (verbose) printf(_("Trying %s\n"), fsname); - fflush(stdout); - } if ((*mount_fn) (args, special, status) == 0) { *types = fsname; ret = 0;