Skip to content

Commit

Permalink
fix minor DEBUG bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
alperaltuntas committed Jan 11, 2024
1 parent f52ade0 commit b5aa9ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clib/pio_nc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -1337,8 +1337,8 @@ PIOc_def_var_filter(int ncid, int varid, unsigned int id, size_t nparams, unsign

PLOG((1, "PIOc_def_var_filter ncid = %d varid = %d id = %d nparams = %d", ncid, varid, id, nparams));
#ifdef DEBUG
for(i=0; i<nparams; i++)
PLOG(1, " param %d %d\n",i, params[i]);
for(int i=0; i<nparams; i++)
PLOG((1, " param %d %d\n",i, params[i]));
#endif

/* Get the file info. */
Expand Down

0 comments on commit b5aa9ce

Please sign in to comment.