summaryrefslogtreecommitdiffstats
path: root/src/H5Z.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-04-03 13:52:30 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-04-03 13:52:30 (GMT)
commit3c77efae1c2b56b80afa30d20536fe344ace7431 (patch)
treeb13812f2ab6b205ba1bc4bde511418df07abfe79 /src/H5Z.c
parentdb8ff96dc0e357162f3b2c0b14efc9159e19d162 (diff)
downloadhdf5-3c77efae1c2b56b80afa30d20536fe344ace7431.zip
hdf5-3c77efae1c2b56b80afa30d20536fe344ace7431.tar.gz
hdf5-3c77efae1c2b56b80afa30d20536fe344ace7431.tar.bz2
[svn-r6578] Purpose:
Code cleanup Description: Added lots of comments to existing filters, so they are easier to understand and use as examples for future filters. Cleaned up various bits of code, etc. Solution: Platforms tested: FreeBSD 4.8 (sleipnir) IRIX64 6.5 (modi4) w/parallel Misc. update:
Diffstat (limited to 'src/H5Z.c')
-rw-r--r--src/H5Z.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Z.c b/src/H5Z.c
index 681ed04..cb96be5 100644
--- a/src/H5Z.c
+++ b/src/H5Z.c
@@ -53,9 +53,6 @@ H5Z_init_interface (void)
{
FUNC_ENTER_NOINIT(H5Z_init_interface);
-#ifdef H5_HAVE_FILTER_SZIP
- H5Z_register (H5Z_FILTER_SZIP, "szip", H5Z_filter_szip);
-#endif /* H5_HAVE_FILTER_SZIP */
#ifdef H5_HAVE_FILTER_DEFLATE
H5Z_register (H5Z_FILTER_DEFLATE, "deflate", H5Z_filter_deflate);
#endif /* H5_HAVE_FILTER_DEFLATE */
@@ -65,6 +62,9 @@ H5Z_init_interface (void)
#ifdef H5_HAVE_FILTER_FLETCHER32
H5Z_register (H5Z_FILTER_FLETCHER32, "fletcher32", H5Z_filter_fletcher32);
#endif /* H5_HAVE_FILTER_FLETCHER32 */
+#ifdef H5_HAVE_FILTER_SZIP
+ H5Z_register (H5Z_FILTER_SZIP, "szip", H5Z_filter_szip);
+#endif /* H5_HAVE_FILTER_SZIP */
FUNC_LEAVE_NOAPI(SUCCEED);
}