Shaun Jackman pointed out that dprintf(STDOUT_FILENO,...) is just a printf.
This commit is contained in:
parent
ea338fffb5
commit
cce1ae2ce5
@ -62,7 +62,8 @@ static int status
|
|||||||
static void tail_xprint_header(const char *fmt, const char *filename)
|
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 we get an output error, there is really no sense in continuing. */
|
||||||
if (dprintf(STDOUT_FILENO, fmt, filename) < 0) {
|
if (printf(fmt, filename) < 0 ||
|
||||||
|
fflush(stdout) < 0) {
|
||||||
bb_perror_nomsg_and_die();
|
bb_perror_nomsg_and_die();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user