diff --git a/apps/tshell.cpp b/apps/tshell.cpp index 032b40e..c1eb010 100644 --- a/apps/tshell.cpp +++ b/apps/tshell.cpp @@ -117,7 +117,7 @@ int main(int argc,char** argv) auto path = Environment::GetRealExecutablePath(args[0]); Platform::Process p(path.ToString(),args); if (p.Start()) - p.WaitForExit(); + p.WaitForExit(); else std::cout << "Failed To Run Process: " << path.ToString() << std::endl; } diff --git a/src/Platform/Process.cpp b/src/Platform/Process.cpp index f81e734..6bfe9e2 100644 --- a/src/Platform/Process.cpp +++ b/src/Platform/Process.cpp @@ -3,7 +3,6 @@ #include "TessesFramework/Platform/Environment.hpp" #include - #if defined(_WIN32) extern "C" { #include