2005-11-17 Andrew Haley <aph@redhat.com>

* cxxfilt.c (main): Flush ouput at newline.
This commit is contained in:
Andrew Haley 2005-11-17 16:58:27 +00:00
parent ed1f044ac6
commit 02aec879c3
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-11-17 Andrew Haley <aph@redhat.com>
* cxxfilt.c (main): Flush ouput at newline.
2005-11-16 Mark Mitchell <mark@codesourcery.com>
* doc/binutils.texi: Include config.texi and @file documentation

View File

@ -278,6 +278,8 @@ main (int argc, char **argv)
/* Echo the whitespace characters so that the output looks
like the input, only with the mangled names demangled. */
putchar (c);
if (c == '\n')
fflush (stdout);
}
fflush (stdout);