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 dd6efc812..5f4f87276 100644 --- a/e2fsprogs/lsattr.c +++ b/e2fsprogs/lsattr.c | |||
@@ -46,7 +46,7 @@ static void list_attributes(const char *name) | |||
46 | if (option_mask32 & OPT_PF_LONG) { | 46 | if (option_mask32 & OPT_PF_LONG) { |
47 | printf("%-28s ", name); | 47 | printf("%-28s ", name); |
48 | print_flags(stdout, fsflags, PFOPT_LONG); | 48 | print_flags(stdout, fsflags, PFOPT_LONG); |
49 | puts(""); | 49 | bb_putchar('\n'); |
50 | } else { | 50 | } else { |
51 | print_flags(stdout, fsflags, 0); | 51 | print_flags(stdout, fsflags, 0); |
52 | printf(" %s\n", name); | 52 | printf(" %s\n", name); |
@@ -74,7 +74,7 @@ static int lsattr_dir_proc(const char *dir_name, struct dirent *de, | |||
74 | ) { | 74 | ) { |
75 | printf("\n%s:\n", path); | 75 | printf("\n%s:\n", path); |
76 | iterate_on_dir(path, lsattr_dir_proc, NULL); | 76 | iterate_on_dir(path, lsattr_dir_proc, NULL); |
77 | puts(""); | 77 | bb_putchar('\n'); |
78 | } | 78 | } |
79 | } | 79 | } |
80 | 80 | ||