Browse Source

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

* cxxfilt.c (main): Flush ouput at newline.
readline_5_1-import-branch
Andrew Haley 21 years ago
parent
commit
02aec879c3
  1. 4
      binutils/ChangeLog
  2. 2
      binutils/cxxfilt.c

4
binutils/ChangeLog

@ -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

2
binutils/cxxfilt.c

@ -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);

Loading…
Cancel
Save