diff options
author | marha <marha@users.sourceforge.net> | 2011-04-29 09:58:14 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-04-29 09:58:14 +0000 |
commit | 88a78ebea08af461224f815a8380ea5c54186f43 (patch) | |
tree | 54360a8cf75f48f1604d16d6cacbe72c9d0fec33 /tools/mhmake/src/commandqueue.cpp | |
parent | 534bc3bc51bbb79d45bcfa1254ca3f6c5d282cbe (diff) | |
download | vcxsrv-88a78ebea08af461224f815a8380ea5c54186f43.tar.gz vcxsrv-88a78ebea08af461224f815a8380ea5c54186f43.tar.bz2 vcxsrv-88a78ebea08af461224f815a8380ea5c54186f43.zip |
Solved problem if last character not echoed in echo command.
Solved linux warning
Added option to disable checking of start directory.
Diffstat (limited to 'tools/mhmake/src/commandqueue.cpp')
-rw-r--r-- | tools/mhmake/src/commandqueue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mhmake/src/commandqueue.cpp b/tools/mhmake/src/commandqueue.cpp index 8ca842362..d2d462df6 100644 --- a/tools/mhmake/src/commandqueue.cpp +++ b/tools/mhmake/src/commandqueue.cpp @@ -163,7 +163,7 @@ void commandqueue::RemoveActiveEntry(unsigned Entry) }
}
m_pActiveEntries[Entry]=NULL;
- m_pActiveProcesses[Entry]=NULL;
+ m_pActiveProcesses[Entry]=0;
m_NrActiveEntries--;
}
|