diff options
author | Pascal Terjan | 2007-11-15 19:26:18 +0100 |
---|---|---|
committer | Karel Zak | 2007-11-16 12:56:27 +0100 |
commit | 6ada3e4e79954a3dfce7e8edfc810a81c7ddc85f (patch) | |
tree | 0524a4d53261643c4d76f2ed3298e696a19f28ac | |
parent | po: update POTFILES.in (diff) | |
download | kernel-qcow2-util-linux-6ada3e4e79954a3dfce7e8edfc810a81c7ddc85f.tar.gz kernel-qcow2-util-linux-6ada3e4e79954a3dfce7e8edfc810a81c7ddc85f.tar.xz kernel-qcow2-util-linux-6ada3e4e79954a3dfce7e8edfc810a81c7ddc85f.zip |
mount: drop the part always true from a while condition
Signed-off-by: Pascal Terjan <pterjan@linuxfr.org>
-rw-r--r-- | mount/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mount/mount.c b/mount/mount.c index 7a6ae004a..4d2fefbbd 100644 --- a/mount/mount.c +++ b/mount/mount.c @@ -658,7 +658,7 @@ check_special_mountprog(const char *spec, const char *node, const char *type, in if (verbose > 2) { i = 0; - while(verbose > 2 && mountargs[i]) { + while(mountargs[i]) { printf("mount: external mount: argv[%d] = \"%s\"\n", i, mountargs[i]); i++; |