summaryrefslogtreecommitdiffstats
path: root/test/tid.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-05-07 18:05:02 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-05-07 18:05:02 (GMT)
commitd33f696dca83326884935d6ad1ee399fa21721a8 (patch)
tree93c6accf6acaa0e7ac5d158a4f38a4d0b631923f /test/tid.c
parent7f58a89578b64df2b040d97294cb1cf2a82bebd3 (diff)
downloadhdf5-d33f696dca83326884935d6ad1ee399fa21721a8.zip
hdf5-d33f696dca83326884935d6ad1ee399fa21721a8.tar.gz
hdf5-d33f696dca83326884935d6ad1ee399fa21721a8.tar.bz2
Brings hash table IDs from develop
Diffstat (limited to 'test/tid.c')
-rw-r--r--test/tid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tid.c b/test/tid.c
index 62ad7ea..fc8c4a6 100644
--- a/test/tid.c
+++ b/test/tid.c
@@ -715,7 +715,7 @@ test_remove_clear_type(void)
for (i = 0; i < RCT_NITER; i++) {
/* The number of members in the type, according to the HDF5 library */
- hsize_t nmembers = 1234567;
+ hsize_t nmembers = 1234567; /* (init to fake number) */
/* The number of objects found while scanning through the object list */
int found;
@@ -801,7 +801,7 @@ test_remove_clear_type(void)
if (ret == FAIL)
goto error;
VERIFY(nmembers, found, "The number of members remaining in the type did not match our count");
- if (nmembers != found)
+ if (nmembers != (hsize_t)found)
goto error;
/*****************************************