diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-27 02:13:18 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-11-27 02:13:18 (GMT) |
commit | 8cb45292110453354afd78b7cf1da50db2341014 (patch) | |
tree | 1230c02adefa40290545a129aacd670a6c227bbd /test/tchecksum.c | |
parent | f116545ce465181928ca97214b9cfa87092a3ee9 (diff) | |
download | hdf5-8cb45292110453354afd78b7cf1da50db2341014.zip hdf5-8cb45292110453354afd78b7cf1da50db2341014.tar.gz hdf5-8cb45292110453354afd78b7cf1da50db2341014.tar.bz2 |
Fixed misc Warnings flagged by VS2017.
Diffstat (limited to 'test/tchecksum.c')
-rw-r--r-- | test/tchecksum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tchecksum.c b/test/tchecksum.c index febaacc..ffbab45 100644 --- a/test/tchecksum.c +++ b/test/tchecksum.c @@ -187,7 +187,7 @@ test_chksum_large(void) /* Allocate the buffer */ large_buf = (uint8_t *)HDmalloc((size_t)BUF_LEN); - CHECK(large_buf, NULL, "HDmalloc"); + CHECK_PTR(large_buf, "HDmalloc"); /* Initialize buffer w/known data */ for(u = 0; u < BUF_LEN; u++) |