diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-27 10:20:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-27 10:20:47 +0000 |
commit | 4daad9004d8f07991516970a1cbd77756fae7041 (patch) | |
tree | f1a17e4b168ef8fdf8af92ac5ce8deba89d38db2 /util-linux/fsck_minix.c | |
parent | 1acdc89e992eb3f0548ff48ba586b31c9a0ae232 (diff) | |
download | busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.tar.gz busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.tar.bz2 busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.zip |
introduce bb_putchar(). saves ~1800 on uclibc (less on glibc).
Diffstat (limited to 'util-linux/fsck_minix.c')
-rw-r--r-- | util-linux/fsck_minix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index 531c1ea0b..5f92f3511 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c | |||
@@ -307,12 +307,12 @@ static int ask(const char *string, int def) | |||
307 | int c; | 307 | int c; |
308 | 308 | ||
309 | if (!repair) { | 309 | if (!repair) { |
310 | puts(""); | 310 | bb_putchar('\n'); |
311 | errors_uncorrected = 1; | 311 | errors_uncorrected = 1; |
312 | return 0; | 312 | return 0; |
313 | } | 313 | } |
314 | if (automatic) { | 314 | if (automatic) { |
315 | puts(""); | 315 | bb_putchar('\n'); |
316 | if (!def) | 316 | if (!def) |
317 | errors_uncorrected = 1; | 317 | errors_uncorrected = 1; |
318 | return def; | 318 | return def; |