* bfd.c (_bfd_default_error_handler): Correct loop exit.

This commit is contained in:
Alan Modra 2004-09-04 01:30:21 +00:00
parent fb60388340
commit 3e540f2516
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-09-04 Alan Modra <amodra@bigpond.net.au>
* bfd.c (_bfd_default_error_handler): Correct loop exit.
2004-09-03 Mark Mitchell <mark@codesourcery.com>
* config.bfd (arm*-*-symbianelf*): Use OS-specific target vectors.

View File

@ -437,7 +437,7 @@ _bfd_default_error_handler (const char *fmt, ...)
abort ();
p = fmt;
while (*p != '\0')
while (1)
{
char *q;
size_t len, extra, trim;