Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
drreynolds committed Sep 28, 2024
1 parent b1ddb1d commit 96926e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/arkode/arkode.c
Original file line number Diff line number Diff line change
Expand Up @@ -3692,8 +3692,7 @@ int ark_MRIStepInnerEvolve(MRIStepInnerStepper stepper,
if (retval != ARK_SUCCESS) { return (retval); }

/* set the inner forcing data */
retval = ark_mem->step_setforcing(ark_mem, tshift, tscale, forcing,
nforcing);
retval = ark_mem->step_setforcing(ark_mem, tshift, tscale, forcing, nforcing);
if (retval != ARK_SUCCESS) { return (retval); }

/* set the stop time */
Expand Down
2 changes: 1 addition & 1 deletion src/arkode/arkode_arkstep.c
Original file line number Diff line number Diff line change
Expand Up @@ -3213,7 +3213,7 @@ int arkStep_SetInnerForcing(ARKodeMem ark_mem, sunrealtype tshift,

/* access ARKodeARKStepMem structure */
retval = arkStep_AccessStepMem(ark_mem, __func__, &step_mem);
if (retval != ARK_SUCCESS) { return(retval); }
if (retval != ARK_SUCCESS) { return (retval); }

if (nvecs > 0)
{
Expand Down

0 comments on commit 96926e7

Please sign in to comment.