Skip to content

Commit

Permalink
- warning removal, printing long instead of integer.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@2754 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Mar 20, 2007
1 parent 2f7fd38 commit dd039f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_runtime/simulation_events.cpp
Expand Up @@ -224,7 +224,7 @@ ExecuteNextEvent(double *t)
if (EventQueue.begin() != EventQueue.end()) {
long nextEvent = EventQueue.front();
if (sim_verbose) {
printf("Executing event id:%d\n",nextEvent);
printf("Executing event id:%ld\n",nextEvent);
}
if (nextEvent >= globalData->nZeroCrossing) {
globalData->timeValue = *t;
Expand Down

0 comments on commit dd039f4

Please sign in to comment.