summaryrefslogtreecommitdiffstats
path: root/src/H5Tbit.c
diff options
context:
space:
mode:
authorkmu <kmu@hdfgroup.org>2019-11-26 23:23:34 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:24 (GMT)
commitf2028c7568c2ad8ef91bc78cc8dac9b2d8c8eb1d (patch)
treef63980b1e4a4aed7a0a3cf4c3d7a3f83496c10e1 /src/H5Tbit.c
parent9a3a13cacb2c519a5c4deab817606a743e9ece0d (diff)
downloadhdf5-f2028c7568c2ad8ef91bc78cc8dac9b2d8c8eb1d.zip
hdf5-f2028c7568c2ad8ef91bc78cc8dac9b2d8c8eb1d.tar.gz
hdf5-f2028c7568c2ad8ef91bc78cc8dac9b2d8c8eb1d.tar.bz2
Revert "using a different MACRO"
This reverts commit fc61b7a9f3a38331809ebcb6247482943947cdb8.
Diffstat (limited to 'src/H5Tbit.c')
-rw-r--r--src/H5Tbit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Tbit.c b/src/H5Tbit.c
index d2f5657..1a7ea9b 100644
--- a/src/H5Tbit.c
+++ b/src/H5Tbit.c
@@ -21,9 +21,9 @@
#include "H5private.h" /*generic functions */
#include "H5Eprivate.h" /*error handling */
-#include "H5MMprivate.h" /* Memory management */
-#include "H5Tpkg.h" /*data-type functions */
-#include "H5WBprivate.h" /* Wrapped Buffers */
+#include "H5MMprivate.h" /* Memory management */
+#include "H5Tpkg.h" /*data-type functions */
+#include "H5WBprivate.h" /* Wrapped Buffers */
@@ -363,7 +363,7 @@ H5T__bit_set(uint8_t *buf, size_t offset, size_t size, hbool_t value)
/* The middle bytes */
while (size >= 8) {
- H5_CHECKED_ASSIGN(buf[idx++], uint8_t, value ? 0xff : 0x00, int);
+ ASSIGN_TO_SMALLER_SIZE(buf[idx++], uint8_t, value ? 0xff : 0x00, int);
size -= 8;
}
@@ -532,7 +532,7 @@ H5T__bit_inc(uint8_t *buf, size_t start, size_t size)
acc = buf[idx];
acc++;
carry = acc & 0x100;
- H5_CHECKED_ASSIGN(buf[idx], uint8_t, acc & 0xff, unsigned);
+ ASSIGN_TO_SMALLER_SIZE(buf[idx], uint8_t, acc & 0xff, unsigned);
idx++;
size -= 8;
}