diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2011-06-07 19:17:11 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2011-06-07 19:17:11 (GMT) |
commit | 5479ee3b0ce741ed7bbae5b90b102f51c18f8b99 (patch) | |
tree | d702c36f8119a00c6dc4837a435373ce9f1235b9 /src | |
parent | fc3a269042e4c595a3f09dee707de729beef51cb (diff) | |
download | hdf5-5479ee3b0ce741ed7bbae5b90b102f51c18f8b99.zip hdf5-5479ee3b0ce741ed7bbae5b90b102f51c18f8b99.tar.gz hdf5-5479ee3b0ce741ed7bbae5b90b102f51c18f8b99.tar.bz2 |
[svn-r20946] Issue 4278 - When reading data fails, the error message should say which filter isn't registered. This is the follow-up commit. In my first checkin, I took out the line "H5Z_SZIP->encoder_present = SZ_encoder_enabled()" by
mistake. It caused SZIP test to fail. I'm puting it back now.
Tested on jam - simple change.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Z.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -96,6 +96,7 @@ H5Z_init_interface (void) HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register fletcher32 filter") #endif /* H5_HAVE_FILTER_FLETCHER32 */ #ifdef H5_HAVE_FILTER_SZIP + H5Z_SZIP->encoder_present = SZ_encoder_enabled(); if (H5Z_register (H5Z_SZIP)<0) HGOTO_ERROR (H5E_PLINE, H5E_CANTINIT, FAIL, "unable to register szip filter") #endif /* H5_HAVE_FILTER_SZIP */ |