diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2020-01-09 22:32:04 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2020-01-09 22:32:04 (GMT) |
commit | 278980a654061b969a5b39b72fc3da6327f8aabf (patch) | |
tree | 5312ef95eb454085d975d6ad81b6118b59f2b1fd /tools | |
parent | a7c5c5715a18ccded5a7cdb070d1bf5cdd9fb14d (diff) | |
parent | 99fa2dbec3d707b47032c3ad4fb1b6cf80cec25e (diff) | |
download | hdf5-278980a654061b969a5b39b72fc3da6327f8aabf.zip hdf5-278980a654061b969a5b39b72fc3da6327f8aabf.tar.gz hdf5-278980a654061b969a5b39b72fc3da6327f8aabf.tar.bz2 |
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~lrknox/hdf5_lrk into develop
Diffstat (limited to 'tools')
-rw-r--r-- | tools/test/h5dump/h5dumpgentest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test/h5dump/h5dumpgentest.c b/tools/test/h5dump/h5dumpgentest.c index 6cf2916..d0421d2 100644 --- a/tools/test/h5dump/h5dumpgentest.c +++ b/tools/test/h5dump/h5dumpgentest.c @@ -10488,7 +10488,7 @@ H5Z_filter_dynlibud(unsigned int flags, size_t cd_nelmts, /* Subtract the original value with MULTIPLIER */ while(buf_left > 0) { char temp = *int_ptr; - H5_CHECKED_ASSIGN(*int_ptr, int8_t, temp - MULTIPLIER, int); + *int_ptr = (int8_t)(temp - MULTIPLIER); int_ptr++; buf_left -= sizeof(*int_ptr); } /* end while */ @@ -10497,7 +10497,7 @@ H5Z_filter_dynlibud(unsigned int flags, size_t cd_nelmts, /* Add the original value with MULTIPLIER */ while(buf_left > 0) { char temp = *int_ptr; - H5_CHECKED_ASSIGN(*int_ptr, int8_t, temp + MULTIPLIER, int); + *int_ptr = (int8_t)(temp + MULTIPLIER); int_ptr++; buf_left -= sizeof(*int_ptr); } /* end while */ |