diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-09-18 21:00:04 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-09-18 21:00:04 (GMT) |
commit | 2a693df23973d00c8e9900e92472f6256616d816 (patch) | |
tree | 806496a6e9b9ac921980dd83922884392005b8fd | |
parent | 1a332eb5a2edc5638b0d5aea5fa5461b31ce957f (diff) | |
download | hdf5-2a693df23973d00c8e9900e92472f6256616d816.zip hdf5-2a693df23973d00c8e9900e92472f6256616d816.tar.gz hdf5-2a693df23973d00c8e9900e92472f6256616d816.tar.bz2 |
[svn-r14150]
bug fix: a CHECK macro had a wrong function name (H5Pget_link_creation_order) in the description
tested: linux
-rw-r--r-- | test/tattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tattr.c b/test/tattr.c index 96f6051..c708fff 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -3397,7 +3397,7 @@ test_attr_corder_create_basic(hid_t fcpl, hid_t fapl) /* Query the attribute creation properties */ ret = H5Pget_attr_creation_order(dcpl, &crt_order_flags); - CHECK(ret, FAIL, "H5Pget_link_creation_order"); + CHECK(ret, FAIL, "H5Pget_attr_creation_order"); VERIFY(crt_order_flags, (H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) , "H5Pget_attr_creation_order"); /* Close property list */ |