diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2008-07-08 16:20:39 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2008-07-08 16:20:39 (GMT) |
commit | d989ab71f4444cfa5a93061eebdbd9df2c0efe28 (patch) | |
tree | 74258ce699e43b7a3be2aa4fa71b0a18e073985a /src | |
parent | 0631ac2273643aaaf07fd86b764b3cc61c82863b (diff) | |
download | hdf5-d989ab71f4444cfa5a93061eebdbd9df2c0efe28.zip hdf5-d989ab71f4444cfa5a93061eebdbd9df2c0efe28.tar.gz hdf5-d989ab71f4444cfa5a93061eebdbd9df2c0efe28.tar.bz2 |
[svn-r15336] Fixed incorrect error message in H5Pset_fletcher32:
"unable to add deflate filter to pipeline"
->
"unable to add fletcher32 filter to pipeline"
Tested: kagiso
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Pdcpl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Pdcpl.c b/src/H5Pdcpl.c index 9501019..b971174 100644 --- a/src/H5Pdcpl.c +++ b/src/H5Pdcpl.c @@ -2034,7 +2034,7 @@ H5Pset_fletcher32(hid_t plist_id) if(H5P_get(plist, H5D_CRT_DATA_PIPELINE_NAME, &pline) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get pipeline") if(H5Z_append(&pline, H5Z_FILTER_FLETCHER32, H5Z_FLAG_MANDATORY, (size_t)0, NULL) < 0) - HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to add deflate filter to pipeline") + HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to add fletcher32 filter to pipeline") if(H5P_set(plist, H5D_CRT_DATA_PIPELINE_NAME, &pline) < 0) HGOTO_ERROR(H5E_PLINE, H5E_CANTINIT, FAIL, "unable to set pipeline") |