get_df returns a negative error number, but then
we pass it to strerror, which wants a positive value...
Resolves-Coverity-CID: 1125929
Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx>
---
cmds-filesystem.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/cmds-filesystem.c b/cmds-filesystem.c
index df9d1ff..b1291d6 100644
--- a/cmds-filesystem.c
+++ b/cmds-filesystem.c
@@ -173,7 +173,7 @@ static int cmd_df(int argc, char **argv)
print_df(sargs);
free(sargs);
} else {
- fprintf(stderr, "ERROR: get_df failed %s\n", strerror(ret));
+ fprintf(stderr, "ERROR: get_df failed %s\n", strerror(-ret));
}
close_file_or_dir(fd, dirstream);
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html