summaryrefslogtreecommitdiffstats
path: root/test/ntypes.c
diff options
context:
space:
mode:
authorkmu <kmu@hdfgroup.org>2019-11-25 21:17:55 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:23 (GMT)
commit9a3a13cacb2c519a5c4deab817606a743e9ece0d (patch)
tree301966796df9631e883d1fe728f5e168ca96a353 /test/ntypes.c
parentbb53a566e8a45490b3179290774c3f1450d7d8dd (diff)
downloadhdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.zip
hdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.tar.gz
hdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.tar.bz2
using a different MACRO
Diffstat (limited to 'test/ntypes.c')
-rw-r--r--test/ntypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ntypes.c b/test/ntypes.c
index 03eefe6..99bc155 100644
--- a/test/ntypes.c
+++ b/test/ntypes.c
@@ -2484,7 +2484,7 @@ test_opaque_dtype(hid_t file)
TEST_ERROR;
for(i = 0; i < sizeof(wbuf); i++)
- ASSIGN_TO_SMALLER_SIZE(wbuf[i], unsigned char, 0xff ^ i, size_t);
+ H5_CHECKED_ASSIGN(wbuf[i], unsigned char, 0xff ^ i, size_t);
if(H5Dwrite(dset, type, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf) < 0) TEST_ERROR;
if(H5Sclose(space) < 0) TEST_ERROR;