Skip to content

Commit

Permalink
Solve %ld warning in nonlinearSystem.c (#8993)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnHeuermann committed May 20, 2022
1 parent c454bc7 commit 6583e52
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1073,7 +1073,7 @@ int solve_nonlinear_system(DATA *data, threadData_t *threadData, int sysNumber)
/* performance measurement */
rt_ext_tp_tick(&nonlinsys->totalTimeClock);

infoStreamPrint(LOG_NLS_EXTRAPOLATE, 1, "Nonlinear system %ld dump LOG_NLS_EXTRAPOLATE", nonlinsys->equationIndex);
infoStreamPrint(LOG_NLS_EXTRAPOLATE, 1, "Nonlinear system %lld dump LOG_NLS_EXTRAPOLATE", nonlinsys->equationIndex);
/* grab the initial guess */
/* if last solving is too long ago use just old values */
if (fabs(data->localData[0]->timeValue - nonlinsys->lastTimeSolved) < 5*data->simulationInfo->stepSize || casualTearingSet)
Expand All @@ -1092,7 +1092,7 @@ int solve_nonlinear_system(DATA *data, threadData_t *threadData, int sysNumber)
}

/* print debug initial information */
infoStreamPrint(LOG_NLS, 1, "############ Solve nonlinear system %ld at time %g ############", nonlinsys->equationIndex, data->localData[0]->timeValue);
infoStreamPrint(LOG_NLS, 1, "############ Solve nonlinear system %lld at time %g ############", nonlinsys->equationIndex, data->localData[0]->timeValue);
printNonLinearInitialInfo(LOG_NLS, data, nonlinsys);

/* try */
Expand Down

0 comments on commit 6583e52

Please sign in to comment.