IDE: fixed typo in filtering linker errors from Dmitry

git-svn-id: trunk@20708 -
This commit is contained in:
vincents 2009-06-22 07:48:04 +00:00
parent 5be6d50c10
commit 8a6cb54ea6

View File

@ -712,7 +712,7 @@ var i, j, FilenameEndPos: integer;
if CompStr('ld: ',s,p) then begin
inc(p, 4);
DarwinSymbs := CompStr('symbol(s) not found',s,p);
Result := DarwinSymbs or (Pos('not found', s) > 0);
Result := DarwinSymbs or (Pos('not found', s) > 0);
if DarwinSymbs then begin
if DarwinLinkerLine <> '' then DoAddFilteredLine(DarwinLinkerLine);
DarwinLinkerMultiline:=false;