Skip to content

Commit

Permalink
Attempt to make runInteractiveSimulation.mos fail less frequently
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@15326 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Feb 26, 2013
1 parent 187bb26 commit 2d1f1df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimulationRuntime/interactive/client.cpp
Expand Up @@ -52,7 +52,7 @@ THREAD_RET_TYPE threadServerControl(void*)

if (!shutDownInProgress)
{
cout << "Server recieved message: " << message << endl; fflush(stdout);
cout << ("Server recieved message: " + message) << endl; fflush(stdout);
}
}
return 0;
Expand Down Expand Up @@ -86,7 +86,7 @@ THREAD_RET_TYPE threadServerTransfer(void*)

if (!shutDownInProgress)
{
cout << "Server recieved message: " << message << endl; fflush(stdout);
cout << ("Server recieved message: " + message) << endl; fflush(stdout);
}
}
return 0;
Expand Down

0 comments on commit 2d1f1df

Please sign in to comment.