diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2016-03-07 14:43:30 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2016-03-07 14:43:30 (GMT) |
commit | a8abec4d66bf00d5f0700662357e836cc7b0841b (patch) | |
tree | 9ff7e3d53fd1e3a1bb2991178d8069b5d8f7aaf5 /hl | |
parent | 39db5f21536d0b0a06d9f77533605cf12ab0f55e (diff) | |
download | hdf5-a8abec4d66bf00d5f0700662357e836cc7b0841b.zip hdf5-a8abec4d66bf00d5f0700662357e836cc7b0841b.tar.gz hdf5-a8abec4d66bf00d5f0700662357e836cc7b0841b.tar.bz2 |
[svn-r29303] Merge of r29295 (packet test v1.6 fix) from trunk.
Tested on: 64-bit Ubuntu 15.10 w/ gcc 5.2.1
autotools serial w/ v1.6 default
Diffstat (limited to 'hl')
-rw-r--r-- | hl/test/test_packet_vlen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/test/test_packet_vlen.c b/hl/test/test_packet_vlen.c index 4d55226..10051fa 100644 --- a/hl/test/test_packet_vlen.c +++ b/hl/test/test_packet_vlen.c @@ -758,7 +758,7 @@ static int adding_attribute(hid_t fid, const char *table_name, const char *attr_ goto error; /* Add the specified attribute to it */ - attr_id = H5Acreate(dset_id, attr_name, H5T_NATIVE_INT, space_id, H5P_DEFAULT, H5P_DEFAULT); + attr_id = H5Acreate2(dset_id, attr_name, H5T_NATIVE_INT, space_id, H5P_DEFAULT, H5P_DEFAULT); if (attr_id < 0) goto error; |