Skip to content

Commit

Permalink
json1
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisHeimbigner committed Jun 25, 2024
1 parent 2fd0522 commit 2b4f877
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion plugins/H5Znoop.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ NCZ_noop_codec_to_hdf5(const char* codec_json, size_t* nparamsp, unsigned** para
{
int stat = NC_NOERR;
NCjson* jcodec = NULL;
NCjson* jtmp = NULL;
const NCjson* jtmp = NULL;
int i,nparams = 0;
unsigned* params = NULL;
char field[1024];
Expand Down
2 changes: 1 addition & 1 deletion plugins/NCZhdf5filters.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ NCZ_deflate_codec_to_hdf5(const char* codec_json, size_t* nparamsp, unsigned** p
{
int stat = NC_NOERR;
NCjson* jcodec = NULL;
NCjson* jtmp = NULL;
const NCjson* jtmp = NULL;
unsigned* params = NULL;
struct NCJconst jc;

Expand Down
2 changes: 1 addition & 1 deletion plugins/NCZmisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ NCZ_misc_codec_to_hdf5(const char* codec_json, size_t* nparamsp, unsigned** para
{
int stat = NC_NOERR;
NCjson* jcodec = NULL;
NCjson* jtmp = NULL;
const NCjson* jtmp = NULL;
size_t i,nparams = 0;
unsigned* params = NULL;

Expand Down
6 changes: 3 additions & 3 deletions plugins/NCZstdfilters.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ NCZ_bzip2_codec_to_hdf5(const char* codec_json, size_t* nparamsp, unsigned** par
{
int stat = NC_NOERR;
NCjson* jcodec = NULL;
NCjson* jtmp = NULL;
const NCjson* jtmp = NULL;
unsigned* params = NULL;
struct NCJconst jc;

Expand Down Expand Up @@ -159,7 +159,7 @@ NCZ_zstd_codec_to_hdf5(const char* codec_json, size_t* nparamsp, unsigned** para
{
int stat = NC_NOERR;
NCjson* jcodec = NULL;
NCjson* jtmp = NULL;
const NCjson* jtmp = NULL;
unsigned* params = NULL;
struct NCJconst jc;

Expand Down Expand Up @@ -339,7 +339,7 @@ NCZ_blosc_codec_to_hdf5(const char* codec_json, size_t* nparamsp, unsigned** par
{
int stat = NC_NOERR;
NCjson* jcodec = NULL;
NCjson* jtmp = NULL;
const NCjson* jtmp = NULL;
unsigned* params = NULL;
struct NCJconst jc = {0,0,0,NULL};
int compcode;
Expand Down
2 changes: 1 addition & 1 deletion plugins/NCZszip.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ NCZ_szip_codec_to_hdf5(const char* codec_json, size_t* nparamsp, unsigned** para
unsigned* params = NULL;
size_t nparams = 2; /* No. of visible parameters */
NCjson* json = NULL;
NCjson* jtmp = NULL;
const NCjson* jtmp = NULL;
struct NCJconst jc = {0,0,0,NULL};

if(nparamsp == NULL || paramsp == NULL)
Expand Down
2 changes: 1 addition & 1 deletion plugins/NCZtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ NCZ_misc_codec_to_hdf5(const char* codec_json, size_t* nparamsp, unsigned** para
{
int stat = NC_NOERR;
NCjson* jcodec = NULL;
NCjson* jtmp = NULL;
const NCjson* jtmp = NULL;
size_t i,nparams = 0;
unsigned* params = NULL;

Expand Down

0 comments on commit 2b4f877

Please sign in to comment.