diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-24 09:31:57 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-24 09:31:57 +0200 |
commit | 87c40cf4de435d1b19b7fb545a495542c6eaf820 (patch) | |
tree | 3eaaec39b88cff99d5beee4caac961d7b2b4c7f7 /e2fsprogs/lsattr.c | |
parent | 9468ea06d2445f774dd923fdfdea04209984fbf4 (diff) | |
download | busybox-w32-87c40cf4de435d1b19b7fb545a495542c6eaf820.tar.gz busybox-w32-87c40cf4de435d1b19b7fb545a495542c6eaf820.tar.bz2 busybox-w32-87c40cf4de435d1b19b7fb545a495542c6eaf820.zip |
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>
Diffstat (limited to 'e2fsprogs/lsattr.c')
-rw-r--r-- | e2fsprogs/lsattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsprogs/lsattr.c b/e2fsprogs/lsattr.c index 545afa7f5..c9f353ce5 100644 --- a/e2fsprogs/lsattr.c +++ b/e2fsprogs/lsattr.c | |||
@@ -83,10 +83,10 @@ static void list_attributes(const char *name) | |||
83 | 83 | ||
84 | if (option_mask32 & OPT_PF_LONG) { | 84 | if (option_mask32 & OPT_PF_LONG) { |
85 | printf("%-28s ", name); | 85 | printf("%-28s ", name); |
86 | print_e2flags(stdout, fsflags, PFOPT_LONG); | 86 | print_e2flags_long(fsflags); |
87 | bb_putchar('\n'); | 87 | bb_putchar('\n'); |
88 | } else { | 88 | } else { |
89 | print_e2flags(stdout, fsflags, 0); | 89 | print_e2flags(fsflags); |
90 | printf(" %s\n", name); | 90 | printf(" %s\n", name); |
91 | } | 91 | } |
92 | 92 | ||