Skip to content

Commit

Permalink
Merge branch 'refactor.tmp' of https://github.com/DennisHeimbigner/ne…
Browse files Browse the repository at this point in the history
…tcdf-c into refactor.tmp
  • Loading branch information
DennisHeimbigner committed Nov 2, 2023
2 parents b8ce64f + 4f291a3 commit 301f3ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions nczarr_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ IF(ENABLE_TESTS)
add_sh_test(nczarr_test run_ut_misc)
add_sh_test(nczarr_test run_ncgen4)
if(LARGE_FILE_TESTS)
BUILD_BIN_TEST(test_readcaching})
BUILD_BIN_TEST(test_writecaching})
BUILD_BIN_TEST(test_readcaching)
BUILD_BIN_TEST(test_writecaching)
BUILD_BIN_TEST(test_chunkcases ${TSTCOMMONSRC})
add_sh_test(nczarr_test run_cachetest)
add_sh_test(nczarr_test run_chunkcases)
Expand Down
4 changes: 2 additions & 2 deletions plugins/NCZhdf5filters.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static NCZ_codec_t NCZ_shuffle_codec = {
};

static int
NCZ_shuffle_codec_to_hdf5(void*, const char* codec, size_t* nparamsp, unsigned** paramsp)
NCZ_shuffle_codec_to_hdf5(void* env, const char* codec, size_t* nparamsp, unsigned** paramsp)
{
int stat = NC_NOERR;

Expand All @@ -78,7 +78,7 @@ NCZ_shuffle_codec_to_hdf5(void*, const char* codec, size_t* nparamsp, unsigned**
}

static int
NCZ_shuffle_hdf5_to_codec(void*, size_t nparams, const unsigned* params, char** codecp)
NCZ_shuffle_hdf5_to_codec(void* env, size_t nparams, const unsigned* params, char** codecp)
{
int stat = NC_NOERR;
char json[1024];
Expand Down

0 comments on commit 301f3ed

Please sign in to comment.