diff options
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 | ||