diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-04-09 02:19:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-04-09 02:19:09 (GMT) |
commit | 8738df19b46db33a459d4fea26d4b22ed1bcd0ee (patch) | |
tree | 9ef32210fac2d8aaf7702ab84979ce893e704d8b /src/H5Oprivate.h | |
parent | 4956cd61f380951b70887281971e0f91687eabeb (diff) | |
download | hdf5-8738df19b46db33a459d4fea26d4b22ed1bcd0ee.zip hdf5-8738df19b46db33a459d4fea26d4b22ed1bcd0ee.tar.gz hdf5-8738df19b46db33a459d4fea26d4b22ed1bcd0ee.tar.bz2 |
[svn-r6609] Purpose:
Code cleanup
Description:
Got rid of anonymous inline struct for filter information in a pipeline
and replaced with typedef'd type.
Solution:
Platforms tested:
FreeBSD 4.8 (sleipnir) w/szip
Linux 2.4 (sleipnir) w/szip
Solaris 2.7 (arabica) w/FORTRAN
IRIX64 6.5 (modi4) w/szip, FORTRAN & parallel
Misc. update:
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index 25868b2..f4292e6 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -152,13 +152,7 @@ typedef struct H5O_bogus_t { typedef struct H5O_pline_t { size_t nfilters; /*num filters defined */ size_t nalloc; /*num elements in `filter' array */ - struct { - H5Z_filter_t id; /*filter identification number */ - unsigned flags; /*defn and invocation flags */ - char *name; /*optional filter name */ - size_t cd_nelmts; /*number of elements in cd_values[] */ - unsigned *cd_values; /*client data values */ - } *filter; /*array of filters */ + H5Z_filter_info_t *filter; /*array of filters */ } H5O_pline_t; /* |