Fix thinko in last fix.

From-SVN: r122284
This commit is contained in:
Mike Stump 2007-02-24 00:53:39 +00:00
parent 196bea21f1
commit 4072813406
1 changed files with 4 additions and 1 deletions

View File

@ -617,7 +617,10 @@ scan_linker_output (const char *fname)
int ok = 0;
if (skip_next_line)
continue;
{
skip_next_line = 0;
continue;
}
while (*p && ISSPACE ((unsigned char) *p))
++p;