[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
This commit is contained in:
James Laird 2005-03-15 10:15:40 -05:00
parent d1d9335d7a
commit d1f8a1e1a9

View File

@ -44,7 +44,7 @@ static int id_test(void)
testObj = H5Iobject_verify(100, (H5I_type_t) 0); testObj = H5Iobject_verify(100, (H5I_type_t) 0);
H5E_END_TRY H5E_END_TRY
VERIFY(arrayID, NULL, "H5Iobject_verify"); VERIFY(testObj, NULL, "H5Iobject_verify");
if(testObj != NULL) if(testObj != NULL)
goto out; goto out;
@ -52,7 +52,7 @@ static int id_test(void)
testObj = H5Iobject_verify(700, (H5I_type_t) 700); testObj = H5Iobject_verify(700, (H5I_type_t) 700);
H5E_END_TRY H5E_END_TRY
VERIFY(arrayID, NULL, "H5Iobject_verify"); VERIFY(testObj, NULL, "H5Iobject_verify");
if(testObj != NULL) if(testObj != NULL)
goto out; goto out;