* elfcomm.c (error): Flush stdout before emitting the error
message. (warn): Likewise.
This commit is contained in:
parent
e83b17baa4
commit
fafd911d9f
2 changed files with 12 additions and 0 deletions
|
@ -35,6 +35,9 @@ error (const char *message, ...)
|
|||
{
|
||||
va_list args;
|
||||
|
||||
/* Try to keep error messages in sync with the program's normal output. */
|
||||
fflush (stdout);
|
||||
|
||||
va_start (args, message);
|
||||
fprintf (stderr, _("%s: Error: "), program_name);
|
||||
vfprintf (stderr, message, args);
|
||||
|
@ -46,6 +49,9 @@ warn (const char *message, ...)
|
|||
{
|
||||
va_list args;
|
||||
|
||||
/* Try to keep warning messages in sync with the program's normal output. */
|
||||
fflush (stdout);
|
||||
|
||||
va_start (args, message);
|
||||
fprintf (stderr, _("%s: Warning: "), program_name);
|
||||
vfprintf (stderr, message, args);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue