Skip to content

Commit

Permalink
Maintenance: Typo in Operator Splitting Example (#653)
Browse files Browse the repository at this point in the history
Fix typo in error check
  • Loading branch information
cjvogl authored Jan 31, 2025
1 parent 294361e commit 3e3c999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/arkode/C_serial/ark_analytic_partitioned.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ int main(int argc, char* argv[])
}

flag = SplittingStepSetCoefficients(arkode_mem, coefficients);
if (check_flag(&flag, "ARKodeSetFixedStep", 1)) { return 1; }
if (check_flag(&flag, "SplittingStepSetCoefficients", 1)) { return 1; }

SplittingStepCoefficients_Destroy(&coefficients);
}
Expand Down

0 comments on commit 3e3c999

Please sign in to comment.