diff options
author | Nat Furrer <nfurrer@ncsa.uiuc.edu> | 2004-06-30 17:29:36 (GMT) |
---|---|---|
committer | Nat Furrer <nfurrer@ncsa.uiuc.edu> | 2004-06-30 17:29:36 (GMT) |
commit | cedec275523c73e98bc556ff0e77cbfed36b33f8 (patch) | |
tree | 747589619119f5cac9ed7217c2efa03c2da88c24 | |
parent | def8b9c596ebe9c06b3b9b5045a3d89509f8dfe8 (diff) | |
download | hdf5-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:
-rw-r--r-- | test/tid.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)); |