From: Jerome St-Louis Date: Thu, 7 Mar 2013 09:45:15 +0000 (-0500) Subject: ide/build output: Corrected the first fix ( a4d3f04c3d20b81dbff107799ea0e1a15673d020 ) X-Git-Tag: 0.44.04~32 X-Git-Url: http://ecere.com/cgi-bin/gitweb.cgi?p=sdk;a=commitdiff_plain;h=0471f82684fdaa98b8f17dcd9e0ee1158562acc5 ide/build output: Corrected the first fix ( a4d3f04c3d20b81dbff107799ea0e1a15673d020 ) - It should have read error > colon, and was causing Fatal error: child process has terminated unexpectedly --- diff --git a/ide/src/project/Project.ec b/ide/src/project/Project.ec index 945d811..4341971 100644 --- a/ide/src/project/Project.ec +++ b/ide/src/project/Project.ec @@ -1621,7 +1621,7 @@ private: MakePathRelative(temp, topNode.path, moduleName); } error = strstr(line, "error:"); - if(error && error < colon) + if(error && error > colon) numErrors++; else {