From 4b2c69c89f3ffbd55a83de538a9d86480bca7079 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Thu, 4 Oct 2001 09:38:54 -0500 Subject: [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) --- src/H5D.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5D.c b/src/H5D.c index 31a633c..7446aa6 100644 --- a/src/H5D.c +++ b/src/H5D.c @@ -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); -- cgit v0.12