From b26746e462b67e4310cf88289703a74c3a213d14 Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Mon, 25 Feb 2013 16:54:36 -0600 Subject: btrfs-progs: Remove write-only var fdres in cmd_dev_stats() fdres is initialized to -1, then later tested, but never set. Just remove it. Signed-off-by: Eric Sandeen --- cmds-device.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/cmds-device.c b/cmds-device.c index 198ad689..58df6da6 100644 --- a/cmds-device.c +++ b/cmds-device.c @@ -295,7 +295,6 @@ static int cmd_dev_stats(int argc, char **argv) int fdmnt; int i; char c; - int fdres = -1; int err = 0; __u64 flags = 0; @@ -390,8 +389,6 @@ static int cmd_dev_stats(int argc, char **argv) out: free(di_args); close(fdmnt); - if (fdres > -1) - close(fdres); return err; } -- cgit v1.2.3