Skip to content

Commit 6b33c4b

Browse files
Replace with constant
1 parent 9a80256 commit 6b33c4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arkode/arkode_forcingstep.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ static void forcingStep_PrintMem(const ARKodeMem ark_mem, FILE* const outfile)
270270
if (retval != ARK_SUCCESS) { return; }
271271

272272
/* output long integer quantities */
273-
for (int k = 0; k < 2; k++)
273+
for (int k = 0; k < PARTITIONS; k++)
274274
{
275275
fprintf(outfile, "ForcingStep: partition %i: n_stepper_evolves = %li\n", k,
276276
step_mem->n_stepper_evolves[k]);

0 commit comments

Comments
 (0)