Skip to content

Commit

Permalink
github tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Aug 25, 2023
1 parent f01d368 commit 1026fbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/clib/pio_msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ int inq_var_chunking_handler(iosystem_desc_t *ios)

return PIO_NOERR;
}
#ifdef NC_HAS_PAR_FILTERS
#ifdef PIO_HAS_PAR_FILTERS
/**
* Do an inq_var_filter_ids on a netCDF variable. This function is only
* run on IO tasks.
Expand Down Expand Up @@ -1247,7 +1247,7 @@ int inq_var_bzip2_handler(iosystem_desc_t *ios)
}
#endif

#ifdef NC_HAS_PAR_FILTERS
#ifdef PIO_HAS_PAR_FILTERS
/**
* Do an inq_var_filter_info on a netCDF variable. This function is only
* run on IO tasks.
Expand Down Expand Up @@ -2955,7 +2955,7 @@ int set_loglevel_handler(iosystem_desc_t *ios)
#endif
return PIO_NOERR;
}
#ifdef NC_HAS_PAR_FILTERS
#ifdef PIO_HAS_PAR_FILTERS
/**
* Do an inq_var_filter_avail on a netCDF variable. This function is only
* run on IO tasks.
Expand Down Expand Up @@ -3177,7 +3177,7 @@ int pio_msg_handler2(int io_rank, int component_count, iosystem_desc_t **iosys,
case PIO_MSG_DEF_VAR:
ret = def_var_handler(my_iosys);
break;
#ifdef NC_HAS_PAR_FILTERS
#ifdef PIO_HAS_PAR_FILTERS
#ifdef NC_HAS_ZSTD
case PIO_MSG_INQ_VAR_ZSTANDARD:
ret = inq_var_zstandard_handler(my_iosys);
Expand Down Expand Up @@ -3289,7 +3289,7 @@ int pio_msg_handler2(int io_rank, int component_count, iosystem_desc_t **iosys,
case PIO_MSG_SETLOGLEVEL:
ret = set_loglevel_handler(my_iosys);
break;
#ifdef NC_HAS_PAR_FILTERS
#ifdef PIO_HAS_PAR_FILTERS
#ifdef NC_HAS_QUANTIZE
case PIO_MSG_DEF_VAR_QUANTIZE:
ret = def_var_quantize_handler(my_iosys);
Expand Down
2 changes: 1 addition & 1 deletion src/clib/pio_nc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -1876,7 +1876,7 @@ PIOc_inq_filter_avail(int ncid, unsigned int id )

return ierr;
}
// NC_HAS_PAR_FILTERS
// PIO_HAS_PAR_FILTERS
#endif
// NC_HAS_MULTIFILTERS
#endif
Expand Down

0 comments on commit 1026fbd

Please sign in to comment.