btrfs-progs: prop: simplify help printing code
Remove a trivial helper. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
acf978a2d4
commit
ee3dfeaab2
|
@ -199,12 +199,6 @@ out:
|
||||||
return ret;
|
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,
|
static int dump_prop(const struct prop_handler *prop,
|
||||||
const char *object,
|
const char *object,
|
||||||
int types,
|
int types,
|
||||||
|
@ -217,7 +211,7 @@ static int dump_prop(const struct prop_handler *prop,
|
||||||
if (!name_and_help)
|
if (!name_and_help)
|
||||||
ret = prop->handler(type, object, prop->name, NULL);
|
ret = prop->handler(type, object, prop->name, NULL);
|
||||||
else
|
else
|
||||||
ret = print_prop_help(prop);
|
printf("%-20s%s\n", prop->name, prop->desc);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue