summaryrefslogtreecommitdiffstats
path: root/test/dynlib1.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2013-04-03 20:51:52 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2013-04-03 20:51:52 (GMT)
commit949835b61f70a771994631b4b5940c2be7198be8 (patch)
treefd80734a39711a0edbb905164c96c0e14131504d /test/dynlib1.c
parentcae6fcf563e16b68b517f9dcfe2c39bdc28f62d9 (diff)
downloadhdf5-949835b61f70a771994631b4b5940c2be7198be8.zip
hdf5-949835b61f70a771994631b4b5940c2be7198be8.tar.gz
hdf5-949835b61f70a771994631b4b5940c2be7198be8.tar.bz2
[svn-r23539] I took out the "const" symbol from H5PL_get_plugin_type and H5PL_get_plugin_info functions.
Tested on koala - simple change.
Diffstat (limited to 'test/dynlib1.c')
-rw-r--r--test/dynlib1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dynlib1.c b/test/dynlib1.c
index 47499b8..de14f6f 100644
--- a/test/dynlib1.c
+++ b/test/dynlib1.c
@@ -38,8 +38,8 @@ const H5Z_class2_t H5Z_DYNLIB1[1] = {{
(H5Z_func_t)H5Z_filter_dynlib1, /* 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_DYNLIB1;}
+H5PL_type_t H5PL_get_plugin_type(void) {return H5PL_TYPE_FILTER;}
+H5Z_class2_t* H5PL_get_plugin_info(void) {return H5Z_DYNLIB1;}
/*-------------------------------------------------------------------------
* Function: H5Z_filter_dynlib1