diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-12-14 19:16:01 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-12-14 19:16:01 (GMT) |
commit | 89f6ef0303907065fbfbbd3c48218a8457149e7e (patch) | |
tree | 4b7af80d3478af97da67fb0b411a7c059ae65602 /tools/h5repack/h5repack_opttable.c | |
parent | 619e6d1cb15ce3e429372571fde9478d4720d491 (diff) | |
download | hdf5-89f6ef0303907065fbfbbd3c48218a8457149e7e.zip hdf5-89f6ef0303907065fbfbbd3c48218a8457149e7e.tar.gz hdf5-89f6ef0303907065fbfbbd3c48218a8457149e7e.tar.bz2 |
[svn-r14345] substituted the symbol CD_VALUES , number of filter client data values, for H5Z_COMMON_CD_VALUES
that is defined in the library
tested: windows, linux, solaris
Diffstat (limited to 'tools/h5repack/h5repack_opttable.c')
-rw-r--r-- | tools/h5repack/h5repack_opttable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repack/h5repack_opttable.c b/tools/h5repack/h5repack_opttable.c index b740274..d37ff4d 100644 --- a/tools/h5repack/h5repack_opttable.c +++ b/tools/h5repack/h5repack_opttable.c @@ -38,7 +38,7 @@ void init_packobject(pack_info_t *obj) for ( j=0; j<H5_REPACK_MAX_NFILTERS; j++) { obj->filter[j].filtn = -1; - for ( k=0; k<CDVALUES; k++) + for ( k=0; k<H5Z_COMMON_CD_VALUES; k++) obj->filter[j].cd_values[k] = -1; } obj->chunk.rank = -1; |