* bfd.c (_bfd_default_error_handler): Correct loop exit.
This commit is contained in:
parent
fb60388340
commit
3e540f2516
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue