mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-12-13 23:08:53 +00:00
Manuel points out that if printf needs a flush to act like dprintf, the result
is bigger. Revert last patch.
This commit is contained in:
parent
0fcd9430ce
commit
b9dfb8c03f
@ -62,8 +62,7 @@ static int status
|
||||
static void tail_xprint_header(const char *fmt, const char *filename)
|
||||
{
|
||||
/* If we get an output error, there is really no sense in continuing. */
|
||||
if (printf(fmt, filename) < 0 ||
|
||||
fflush(stdout) < 0) {
|
||||
if (dprintf(STDOUT_FILENO, fmt, filename) < 0) {
|
||||
bb_perror_nomsg_and_die();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user