[svn-r8772]

Purpose:
Needed to change the type of a variable in tid.c from int to hsize_t to
accomodate the change in H5Inmembers.

Description:
I lied... this is the last commit.  Really, it is.

Solution:

Platforms tested:

Misc. update:
This commit is contained in:
Nat Furrer 2004-06-30 12:29:36 -05:00
parent def8b9c596
commit cedec27552

View File

@ -17,7 +17,8 @@ int id_test()
hid_t testID;
ssize_t testSize = -1;
herr_t err;
int num_ref, num_members;
int num_ref;
hsize_t num_members;
testObj = malloc(7 * sizeof(int));