summaryrefslogtreecommitdiffstats
path: root/test/th5o.c
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-12-04 18:25:54 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-12-04 18:25:54 (GMT)
commit8105ca7f9634f6b25b7bfa7172497c291b9dec9f (patch)
treed906a9d3d9570aa7c351a23d036bed1cee09da0e /test/th5o.c
parente33d677636b860f8f6b95c0ee3736395541a2610 (diff)
parent930a0b5d7c6933e0d216a016cfd29f2255e12433 (diff)
downloadhdf5-8105ca7f9634f6b25b7bfa7172497c291b9dec9f.zip
hdf5-8105ca7f9634f6b25b7bfa7172497c291b9dec9f.tar.gz
hdf5-8105ca7f9634f6b25b7bfa7172497c291b9dec9f.tar.bz2
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_bmr_cpp3 into develop
Diffstat (limited to 'test/th5o.c')
-rw-r--r--test/th5o.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/th5o.c b/test/th5o.c
index 4baac20..144ea4c 100644
--- a/test/th5o.c
+++ b/test/th5o.c
@@ -783,9 +783,9 @@ test_h5o_link(void)
/* Allocate memory buffers */
/* (These are treated as 2-D buffers) */
wdata = (int *)HDmalloc((size_t)(TEST6_DIM1 * TEST6_DIM2) * sizeof(int));
- CHECK(wdata, NULL, "HDmalloc");
+ CHECK_PTR(wdata, "HDmalloc");
rdata = (int *)HDmalloc((size_t)(TEST6_DIM1 * TEST6_DIM2) * sizeof(int));
- CHECK(rdata, NULL, "HDmalloc");
+ CHECK_PTR(rdata, "HDmalloc");
/* Initialize the raw data */
for(i = n = 0; i < (TEST6_DIM1 * TEST6_DIM2); i++)