diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-03-15 15:15:40 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-03-15 15:15:40 (GMT) |
commit | d1f8a1e1a96ba73cbd65800b925b17242806cbed (patch) | |
tree | c19e90955100512bb7665768649a9c3ee9dc4de9 /test | |
parent | d1d9335d7a48bc43e7dda304e15caa517fedaabf (diff) | |
download | hdf5-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')
-rw-r--r-- | test/tid.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |