diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-09-16 13:54:23 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-09-16 13:54:23 (GMT) |
commit | 2385b2b0ad832825bd9009237149e1581326c044 (patch) | |
tree | ff68ed2b81beec4e05f1c7512fca9636536ee85d /test/th5o.c | |
parent | cc0165a973d17386cd4983ac1d0394ad4feb8034 (diff) | |
download | hdf5-2385b2b0ad832825bd9009237149e1581326c044.zip hdf5-2385b2b0ad832825bd9009237149e1581326c044.tar.gz hdf5-2385b2b0ad832825bd9009237149e1581326c044.tar.bz2 |
[svn-r27800] Minor warning fixes in the library tests.
Tested on: jam (too minor for h5committest)
Diffstat (limited to 'test/th5o.c')
-rw-r--r-- | test/th5o.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/th5o.c b/test/th5o.c index 40844fa..90f3c9b 100644 --- a/test/th5o.c +++ b/test/th5o.c @@ -164,7 +164,7 @@ test_h5o_close(void) /* Create the group and close it with H5Oclose */ grp = H5Gcreate2(fid, "group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); CHECK(grp, FAIL, "H5Gcreate2"); - VERIFY(H5Iget_type(grp), H5I_GROUP, "H5Iget_type"); + VERIFY_TYPE(H5Iget_type(grp), H5I_GROUP, H5I_type_t, "%d", "H5Iget_type"); ret = H5Oclose(grp); CHECK(ret, FAIL, "H5Oclose"); |