e2fsprogs: code shrink

function                                             old     new   delta
print_e2flags_long                                     -     109    +109
list_attributes                                      248     232     -16
print_e2flags                                        169      47    -122
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 0/2 up/down: 109/-138)          Total: -29 bytes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2021-06-24 09:31:57 +02:00
parent 9468ea06d2
commit 87c40cf4de
3 changed files with 36 additions and 32 deletions

View File

@@ -83,10 +83,10 @@ static void list_attributes(const char *name)
if (option_mask32 & OPT_PF_LONG) {
printf("%-28s ", name);
print_e2flags(stdout, fsflags, PFOPT_LONG);
print_e2flags_long(fsflags);
bb_putchar('\n');
} else {
print_e2flags(stdout, fsflags, 0);
print_e2flags(fsflags);
printf(" %s\n", name);
}