diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2003-05-07 22:30:56 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2003-05-07 22:30:56 (GMT) |
commit | 546dea5dd91434a5c68f89a95e47c541c9ddb637 (patch) | |
tree | 035742e699568931667dd2635b2c75984358dcda /src/H5Tfixed.c | |
parent | 401c1bc31813f5b44d575823a2c28175bb4e86a0 (diff) | |
download | hdf5-546dea5dd91434a5c68f89a95e47c541c9ddb637.zip hdf5-546dea5dd91434a5c68f89a95e47c541c9ddb637.tar.gz hdf5-546dea5dd91434a5c68f89a95e47c541c9ddb637.tar.bz2 |
[svn-r6828] Purpose: bug fix
Description: H5T_XXX_init_interface calls H5T_init_interface causing
datatype not closed after file is closed.
Solution: changed H5T_init_interface to H5T_init
Platforms tested: h5committest
Diffstat (limited to 'src/H5Tfixed.c')
-rw-r--r-- | src/H5Tfixed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tfixed.c b/src/H5Tfixed.c index fbcc1b0..99bc12b 100644 --- a/src/H5Tfixed.c +++ b/src/H5Tfixed.c @@ -50,7 +50,7 @@ H5T_init_fixed_interface(void) { FUNC_ENTER_NOINIT(H5T_init_fixed_interface); - FUNC_LEAVE_NOAPI(H5T_init_interface()); + FUNC_LEAVE_NOAPI(H5T_init()); } /* H5T_init_fixed_interface() */ |