Eliminate the unused value
authorLaszlo Papp <ext-laszlo.papp@nokia.com>
Mon, 7 Mar 2011 07:27:52 +0000 (09:27 +0200)
committerMiklos Szeredi <mszeredi@suse.cz>
Wed, 30 Mar 2011 17:34:58 +0000 (19:34 +0200)
util/fusermount.c

index adab9b08fd494040dec7f0d5f38d8e5e5d58e74d..fc2d0dd8f2f909aa37f23e72307632c20b58dbcb 100644 (file)
@@ -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);