Skip to content

Commit

Permalink
Merge pull request #1982 from alperaltuntas/bugfix_debug
Browse files Browse the repository at this point in the history
fix minor bugs in pio_nc4.c
  • Loading branch information
jedwards4b authored Jan 24, 2024
2 parents 4fe284c + 22f2ee6 commit 6539ef0
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 6539ef0

Please sign in to comment.