Skip to content

Commit

Permalink
Fix ARK_SUNSTEPPER_ERR handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-Roberts committed Sep 26, 2024
1 parent 1d35b62 commit 75ee9d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arkode/arkode.c
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,7 @@ int arkHandleFailure(ARKodeMem ark_mem, int flag)
"The relaxation Jacobian failed unrecoverably");
break;
case ARK_SUNSTEPPER_ERR:
arkProcessError(ark_mem, ARK_RELAX_JAC_FAIL, __LINE__, __func__, __FILE__,
arkProcessError(ark_mem, ARK_SUNSTEPPER_ERR, __LINE__, __func__, __FILE__,
"An inner SUNStepper error occurred");
break;
default:
Expand Down

0 comments on commit 75ee9d0

Please sign in to comment.