Skip to content

Commit

Permalink
Fixed copy/paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
drreynolds committed Apr 29, 2024
1 parent e4af306 commit 58ac0bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arkode/arkode_erkstep_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,8 @@ int ERKStepSetTableName(void* arkode_mem, const char* etable)
int erkStep_GetEstLocalErrors(ARKodeMem ark_mem, N_Vector ele)
{
int retval;
ARKodeARKStepMem step_mem;
retval = arkStep_AccessStepMem(ark_mem, __func__, &step_mem);
ARKodeERKStepMem step_mem;
retval = erkStep_AccessStepMem(ark_mem, __func__, &step_mem);
if (retval != ARK_SUCCESS) { return (retval); }

/* return an error if local truncation error is not computed */
Expand Down

0 comments on commit 58ac0bc

Please sign in to comment.