diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-04 14:38:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-04 14:38:54 (GMT) |
commit | 4b2c69c89f3ffbd55a83de538a9d86480bca7079 (patch) | |
tree | 1461d640638cc4bfb0348c29f5edabfce2404756 /src | |
parent | 471d8f8ad3b249e95810c0dbd96ba08f2baad055 (diff) | |
download | hdf5-4b2c69c89f3ffbd55a83de538a9d86480bca7079.zip hdf5-4b2c69c89f3ffbd55a83de538a9d86480bca7079.tar.gz hdf5-4b2c69c89f3ffbd55a83de538a9d86480bca7079.tar.bz2 |
[svn-r4520] Purpose:
Bug fix
Description:
Remove 'const' modifier in prototype for H5D_new, the dcpl_id parameter
needs to be non-const.
Platforms tested:
Eyeballed (reported on gondolin)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5D.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ static int interface_initialize_g = 0; #define INTERFACE_INIT H5D_init_interface static herr_t H5D_init_interface(void); static herr_t H5D_init_storage(H5D_t *dataset, const H5S_t *space); -H5D_t * H5D_new(const hid_t dcpl_id); +H5D_t * H5D_new(hid_t dcpl_id); /* Declare a free list to manage the H5D_t struct */ H5FL_DEFINE_STATIC(H5D_t); |