From ee3dfeaab2a86bb687a09febbd57d4c07633fdce Mon Sep 17 00:00:00 2001 From: David Sterba Date: Wed, 7 Sep 2016 15:18:09 +0200 Subject: btrfs-progs: prop: simplify help printing code Remove a trivial helper. Signed-off-by: David Sterba --- cmds-property.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'cmds-property.c') diff --git a/cmds-property.c b/cmds-property.c index e59882b4..854bff56 100644 --- a/cmds-property.c +++ b/cmds-property.c @@ -199,12 +199,6 @@ out: return ret; } -static int print_prop_help(const struct prop_handler *prop) -{ - fprintf(stdout, "%-20s%s\n", prop->name, prop->desc); - return 0; -} - static int dump_prop(const struct prop_handler *prop, const char *object, int types, @@ -217,7 +211,7 @@ static int dump_prop(const struct prop_handler *prop, if (!name_and_help) ret = prop->handler(type, object, prop->name, NULL); else - ret = print_prop_help(prop); + printf("%-20s%s\n", prop->name, prop->desc); } return ret; } -- cgit v1.2.3