diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2008-07-22 14:47:18 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2008-07-22 14:47:18 (GMT) |
commit | 9b6cc394cdc0e9d4775a33415301008b8007d510 (patch) | |
tree | 022d5ed717a0330670c477838e1dbcdfdf76cb40 /test/objcopy.c | |
parent | e7037ad07213833582cf066b05f6dbf52c626ce6 (diff) | |
download | hdf5-9b6cc394cdc0e9d4775a33415301008b8007d510.zip hdf5-9b6cc394cdc0e9d4775a33415301008b8007d510.tar.gz hdf5-9b6cc394cdc0e9d4775a33415301008b8007d510.tar.bz2 |
[svn-r15392] Minor bug fix. The test tried to close an attribute handle with H5Pclose. Corrected it with
H5Aclose.
No test needed.
Diffstat (limited to 'test/objcopy.c')
-rwxr-xr-x | test/objcopy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/objcopy.c b/test/objcopy.c index e82c2f6..6459519 100755 --- a/test/objcopy.c +++ b/test/objcopy.c @@ -273,7 +273,7 @@ error: H5Sclose(sid_ref); H5Dclose(did1); H5Dclose(did2); - H5Pclose(aid); + H5Aclose(aid); } H5E_END_TRY; return(-1); |