Skip to content

Commit

Permalink
Fixed erroneous return
Browse files Browse the repository at this point in the history
  • Loading branch information
drreynolds committed Sep 28, 2024
1 parent 7abffc4 commit b1ddb1d
Showing 1 changed file with 1 addition and 1 deletion.
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; }
if (retval != ARK_SUCCESS) { return(retval); }

if (nvecs > 0)
{
Expand Down

0 comments on commit b1ddb1d

Please sign in to comment.