summaryrefslogtreecommitdiffstats
path: root/test/tid.c
diff options
context:
space:
mode:
authorNat Furrer <nfurrer@ncsa.uiuc.edu>2004-06-30 17:29:36 (GMT)
committerNat Furrer <nfurrer@ncsa.uiuc.edu>2004-06-30 17:29:36 (GMT)
commitcedec275523c73e98bc556ff0e77cbfed36b33f8 (patch)
tree747589619119f5cac9ed7217c2efa03c2da88c24 /test/tid.c
parentdef8b9c596ebe9c06b3b9b5045a3d89509f8dfe8 (diff)
downloadhdf5-cedec275523c73e98bc556ff0e77cbfed36b33f8.zip
hdf5-cedec275523c73e98bc556ff0e77cbfed36b33f8.tar.gz
hdf5-cedec275523c73e98bc556ff0e77cbfed36b33f8.tar.bz2
[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:
Diffstat (limited to 'test/tid.c')
-rw-r--r--test/tid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/tid.c b/test/tid.c
index ed34955..dc20ba3 100644
--- a/test/tid.c
+++ b/test/tid.c
@@ -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));