aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorGravatar Laszlo Papp <ext-laszlo.papp@nokia.com>2011-03-07 09:27:52 +0200
committerGravatar Miklos Szeredi <mszeredi@suse.cz>2011-03-30 19:34:58 +0200
commit81fee822a098a3e26969401fc486f136465f96f0 (patch)
tree9b3ba18cf617160ff0970e4e5d27d3c1b9d8b576 /util
parent7fdc732a19ad0d85d867a0d730cd5cc284b4093d (diff)
Eliminate the unused value
Diffstat (limited to 'util')
-rw-r--r--util/fusermount.c2
1 files changed, 1 insertions, 1 deletions
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);