diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-08-26 03:41:27 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-08-26 03:41:27 (GMT) |
commit | 9e50696cbde187023027b01cf62c6661fb431291 (patch) | |
tree | 4562faa8167de704560674fcc0845405d7e67566 | |
parent | 6b600373d7aa6054c520b2a4bfd1922fc21ac6e4 (diff) | |
download | hdf5-9e50696cbde187023027b01cf62c6661fb431291.zip hdf5-9e50696cbde187023027b01cf62c6661fb431291.tar.gz hdf5-9e50696cbde187023027b01cf62c6661fb431291.tar.bz2 |
[svn-r27583] Fixed some minor warnings in tsohm.c.
Tested on: jam
-rw-r--r-- | test/tsohm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tsohm.c b/test/tsohm.c index 9da655e..9554007 100644 --- a/test/tsohm.c +++ b/test/tsohm.c @@ -1279,7 +1279,7 @@ static void size2_verify_plist1(hid_t plist) CHECK_I(ret, "H5Pget_fill_value"); ret = memcmp(&fill1, &fill1_correct, sizeof(fill1_correct)); - VERIFY(ret, 0, memcmp); + VERIFY(ret, 0, "memcmp"); ret = H5Tclose(dtype1_id); CHECK_I(ret, "H5Tclose"); @@ -1350,7 +1350,7 @@ static void size2_verify_plist2(hid_t plist) CHECK_I(ret, "H5Pget_fill_value"); ret = HDmemcmp(&fill2, &fill2_correct, (size_t)DTYPE2_SIZE); - VERIFY(ret, 0, memcmp); + VERIFY(ret, 0, "memcmp"); ret = H5Tclose(dtype2_id); CHECK_I(ret, "H5Tclose"); |