Skip to content

Commit

Permalink
Correct second usage of _FillValue
Browse files Browse the repository at this point in the history
  • Loading branch information
WardF committed Sep 19, 2024
1 parent 222ad0d commit 53a48a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clib/pio_nc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2574,7 +2574,7 @@ PIOc_inq_var_fill(int ncid, int varid, int *no_fill, void *fill_valuep)

if (!ierr && fill_valuep)
{
ierr = nc_get_att(file->fh, varid, _FillValue, fill_valuep);
ierr = nc_get_att(file->fh, varid, NCDF_FillValue, fill_valuep);
if (ierr == NC_ENOTATT)
{
char char_fill_value = NC_FILL_CHAR;
Expand Down

0 comments on commit 53a48a5

Please sign in to comment.