ide/build output: Corrected the first fix ( a4d3f04c3d20b81dbff107799ea0e1a15673d020 )
authorJerome St-Louis <jerome@ecere.com>
Thu, 7 Mar 2013 09:45:15 +0000 (04:45 -0500)
committerJerome St-Louis <jerome@ecere.com>
Thu, 7 Mar 2013 09:45:15 +0000 (04:45 -0500)
- It should have read  error > colon, and was causing Fatal error: child process has terminated unexpectedly

ide/src/project/Project.ec

index 945d811..4341971 100644 (file)
@@ -1621,7 +1621,7 @@ private:
                            MakePathRelative(temp, topNode.path, moduleName);
                         }
                         error = strstr(line, "error:");
-                        if(error && error < colon)
+                        if(error && error > colon)
                            numErrors++;
                         else
                         {