summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2008-07-22 14:47:18 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2008-07-22 14:47:18 (GMT)
commit9b6cc394cdc0e9d4775a33415301008b8007d510 (patch)
tree022d5ed717a0330670c477838e1dbcdfdf76cb40 /test
parente7037ad07213833582cf066b05f6dbf52c626ce6 (diff)
downloadhdf5-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')
-rwxr-xr-xtest/objcopy.c2
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);