summaryrefslogtreecommitdiffstats
path: root/test/tid.c
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-03-15 15:15:40 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-03-15 15:15:40 (GMT)
commitd1f8a1e1a96ba73cbd65800b925b17242806cbed (patch)
treec19e90955100512bb7665768649a9c3ee9dc4de9 /test/tid.c
parentd1d9335d7a48bc43e7dda304e15caa517fedaabf (diff)
downloadhdf5-d1f8a1e1a96ba73cbd65800b925b17242806cbed.zip
hdf5-d1f8a1e1a96ba73cbd65800b925b17242806cbed.tar.gz
hdf5-d1f8a1e1a96ba73cbd65800b925b17242806cbed.tar.bz2
[svn-r10217] Purpose:
Bug fix Description: Fix a typo in my last checkin. Should make some compilers happier about "operand types." Platforms tested: sleipnir, heping, kelgia
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 3e931a5..b30849e 100644
--- a/test/tid.c
+++ b/test/tid.c
@@ -44,7 +44,7 @@ static int id_test(void)
testObj = H5Iobject_verify(100, (H5I_type_t) 0);
H5E_END_TRY
- VERIFY(arrayID, NULL, "H5Iobject_verify");
+ VERIFY(testObj, NULL, "H5Iobject_verify");
if(testObj != NULL)
goto out;
@@ -52,7 +52,7 @@ static int id_test(void)
testObj = H5Iobject_verify(700, (H5I_type_t) 700);
H5E_END_TRY
- VERIFY(arrayID, NULL, "H5Iobject_verify");
+ VERIFY(testObj, NULL, "H5Iobject_verify");
if(testObj != NULL)
goto out;