summaryrefslogtreecommitdiffstats
path: root/test/dynlib3.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2013-04-03 20:53:13 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2013-04-03 20:53:13 (GMT)
commit68b0945687c29ce157280b66ec1773d6b0890069 (patch)
tree7955b4c1d38c7322918e503a375a091b86aa4801 /test/dynlib3.c
parentf2e9f4e8c66c35ed2f0541039da9028940a8b0a3 (diff)
downloadhdf5-68b0945687c29ce157280b66ec1773d6b0890069.zip
hdf5-68b0945687c29ce157280b66ec1773d6b0890069.tar.gz
hdf5-68b0945687c29ce157280b66ec1773d6b0890069.tar.bz2
[svn-r23540] I took out the "const" symbol from H5PL_get_plugin_type and H5PL_get_plugin_info functions.
Tested on jam - simple change.
Diffstat (limited to 'test/dynlib3.c')
-rw-r--r--test/dynlib3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dynlib3.c b/test/dynlib3.c
index 230096d..276a5b7 100644
--- a/test/dynlib3.c
+++ b/test/dynlib3.c
@@ -41,8 +41,8 @@ const H5Z_class2_t H5Z_DYNLIB3[1] = {{
(H5Z_func_t)H5Z_filter_dynlib3, /* The actual filter function */
}};
-const H5PL_type_t H5PL_get_plugin_type(void) {return H5PL_TYPE_FILTER;}
-const H5Z_class2_t* H5PL_get_plugin_info(void) {return H5Z_DYNLIB3;}
+H5PL_type_t H5PL_get_plugin_type(void) {return H5PL_TYPE_FILTER;}
+H5Z_class2_t* H5PL_get_plugin_info(void) {return H5Z_DYNLIB3;}
/*-------------------------------------------------------------------------
* Function: H5Z_filter_dynlib3