summaryrefslogtreecommitdiffstats
path: root/src/H5Z.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2013-04-04 21:05:34 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2013-04-04 21:05:34 (GMT)
commit55345aaf4d91ef4ac3378b54d4e4fb80810713ac (patch)
tree97975843879ca4acd1974174911bf78ebe909e86 /src/H5Z.c
parent5f43e5f837cb195cab62479263c29903c63bdb1e (diff)
downloadhdf5-55345aaf4d91ef4ac3378b54d4e4fb80810713ac.zip
hdf5-55345aaf4d91ef4ac3378b54d4e4fb80810713ac.tar.gz
hdf5-55345aaf4d91ef4ac3378b54d4e4fb80810713ac.tar.bz2
[svn-r23550] Description:
Bring r23549 from trunk to desy_1_8 branch: More misc. cleanups, but main change is to make an "extern" header file for the plugin interface. Tested on: Mac OSX/64 10.8.3 (amazon)
Diffstat (limited to 'src/H5Z.c')
-rw-r--r--src/H5Z.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Z.c b/src/H5Z.c
index 8095dce..9f8b59d 100644
--- a/src/H5Z.c
+++ b/src/H5Z.c
@@ -1126,10 +1126,10 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags,
if(H5PL_no_plugin())
issue_error = TRUE;
else {
- H5Z_class2_t *filter_info;
+ const H5Z_class2_t *filter_info;
/* Try loading the filter */
- if(NULL != (filter_info = (H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)(pline->filter[idx].id)))) {
+ if(NULL != (filter_info = (const H5Z_class2_t *)H5PL_load(H5PL_TYPE_FILTER, (int)(pline->filter[idx].id)))) {
/* Register the filter we loaded */
if(H5Z_register(filter_info) < 0)
HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register filter")