diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 14:10:24 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 14:10:24 +0000 |
commit | 3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e (patch) | |
tree | 038567c7d5d0a3c9bfe40eeb534ffc9559423b9d /libbb | |
parent | 08294dbf5bc6fb1ea0b185488675d91169e231ce (diff) | |
download | busybox-w32-3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e.tar.gz busybox-w32-3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e.tar.bz2 busybox-w32-3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e.zip |
expand, unexpand: new applets from Tito <farmatito@tiscali.it>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/fflush_stdout_and_exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/fflush_stdout_and_exit.c b/libbb/fflush_stdout_and_exit.c index 48889dae8..9f05500f3 100644 --- a/libbb/fflush_stdout_and_exit.c +++ b/libbb/fflush_stdout_and_exit.c | |||
@@ -16,7 +16,7 @@ | |||
16 | void fflush_stdout_and_exit(int retval) | 16 | void fflush_stdout_and_exit(int retval) |
17 | { | 17 | { |
18 | if (fflush(stdout)) | 18 | if (fflush(stdout)) |
19 | xfunc_die(); | 19 | bb_perror_msg_and_die(bb_msg_standard_output); |
20 | 20 | ||
21 | if (ENABLE_FEATURE_PREFER_APPLETS && die_sleep < 0) { | 21 | if (ENABLE_FEATURE_PREFER_APPLETS && die_sleep < 0) { |
22 | /* We are in NOFORK applet. Do not exit() directly, | 22 | /* We are in NOFORK applet. Do not exit() directly, |