Skip to content

Commit

Permalink
Use correct types
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@17641 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Oct 10, 2013
1 parent ad82e9e commit ef3990f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimulationRuntime/c/simulation/solver/dassl.c
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ int jacA_num(DATA* data, double *t, double *y, double *yprime, double *delta, do
double delta_h = dasslData->sqrteps;
double delta_hh,delta_hhh, deltaInv;
double ysave;
integer ires;
fortran_integer ires;
int i,j;

for(i = data->modelData.nStates-1; i >=0 ; i--)
Expand Down Expand Up @@ -820,7 +820,7 @@ int jacA_numColored(DATA* data, double *t, double *y, double *yprime, double *de
DASSL_DATA* dasslData = (DASSL_DATA*)(void*)((double**)rpar)[1];
double delta_h = dasslData->sqrteps;
double delta_hhh;
integer ires;
fortran_integer ires;
double* delta_hh = dasslData->delta_hh;
double* ysave = dasslData->ysave;

Expand Down

0 comments on commit ef3990f

Please sign in to comment.