summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-01-09 22:32:04 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-01-09 22:32:04 (GMT)
commit278980a654061b969a5b39b72fc3da6327f8aabf (patch)
tree5312ef95eb454085d975d6ad81b6118b59f2b1fd /tools
parenta7c5c5715a18ccded5a7cdb070d1bf5cdd9fb14d (diff)
parent99fa2dbec3d707b47032c3ad4fb1b6cf80cec25e (diff)
downloadhdf5-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.c4
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 */