Skip to content

Commit

Permalink
- fixed compiling error
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@10542 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Willi Braun committed Nov 18, 2011
1 parent 927a7d3 commit 114161f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions SimulationRuntime/interactive/omi_ServiceInterface.cpp
Expand Up @@ -462,12 +462,13 @@ void getSimulationStartData(double *stepSize, long *outputSteps,

gdMutex.Lock();

_X_DATA simData;
MODEL_DATA modelData;
SIMULATION_INFO simData;
SIMULATION_INFO simInfo;

read_input_xml(argcTEMP, argvTEMP, globalData, &modelData, &simData, &start, &stop, stepSize,
read_input_xml(argcTEMP, argvTEMP, globalData, &modelData, &simInfo, &start, &stop, stepSize,
outputSteps, tolerance, method, outputFormat, &variableFilter);
callExternalObjectConstructors(NULL, globalData);
callExternalObjectConstructors(&simData);

gdMutex.Unlock();
}
Expand Down

0 comments on commit 114161f

Please sign in to comment.