+2013-03-04 Nick Clifton <nickc@redhat.com>
+
+ * elfcomm.c (error): Flush stdout before emitting the error
+ message.
+ (warn): Likewise.
+
2013-03-01 Cary Coutant <ccoutant@google.com>
* dwarf.c (cu_tu_indexes_read, shndx_pool, shndx_pool_size)
{
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);
{
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);