From: Laszlo Papp Date: Mon, 7 Mar 2011 07:27:52 +0000 (+0200) Subject: Eliminate the unused value X-Git-Tag: fuse_2_9_0~59 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=81fee822a098a3e26969401fc486f136465f96f0;p=qemu-gpiodev%2Flibfuse.git Eliminate the unused value --- diff --git a/util/fusermount.c b/util/fusermount.c index adab9b0..fc2d0dd 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -248,7 +248,7 @@ static int check_is_mount_child(void *p) } count = 0; - while ((entp = getmntent(fp)) != NULL) + while (getmntent(fp) != NULL) count++; endmntent(fp);