Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
drreynolds committed Sep 11, 2024
1 parent 683c03f commit 800aadf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arkode/arkode_adapt.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ int arkAdapt(ARKodeMem ark_mem, ARKodeHAdaptMem hadapt_mem, N_Vector ycur,
int controller_order;

/* Return with no stepsize adjustment if the controller is NULL */
if (hdapt_mem->hcontroller == NULL)
if (hadapt_mem->hcontroller == NULL)
{
h_acc = hcur;
ark_mem->eta = ONE;
return (ARK_SUCCESS);
}

Expand Down

0 comments on commit 800aadf

Please sign in to comment.