diff options
author | Xiaowen Wu <wuxiaowe@ncsa.uiuc.edu> | 2005-02-14 18:15:35 (GMT) |
---|---|---|
committer | Xiaowen Wu <wuxiaowe@ncsa.uiuc.edu> | 2005-02-14 18:15:35 (GMT) |
commit | 2d481178177f5be801838a1c661642d2883d8f13 (patch) | |
tree | 86baaf15364f378ef3a4e6422432c36e5a619391 /src | |
parent | e1ffee4e4e420cdeb276778c42a2a9612d79dcd5 (diff) | |
download | hdf5-2d481178177f5be801838a1c661642d2883d8f13.zip hdf5-2d481178177f5be801838a1c661642d2883d8f13.tar.gz hdf5-2d481178177f5be801838a1c661642d2883d8f13.tar.bz2 |
[svn-r9999] Purpose:
Very slight modification.
Description:
Remove two redundant local macros.
Solution:
Platforms tested:
heping
Misc. update:
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Znbit.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/H5Znbit.c b/src/H5Znbit.c index 60eebe7..96830d4 100644 --- a/src/H5Znbit.c +++ b/src/H5Znbit.c @@ -81,8 +81,6 @@ H5Z_class_t H5Z_NBIT[1] = {{ }}; /* Local macros */ -#define FALSE 0 -#define TRUE 1 #define H5Z_NBIT_ATOMIC 1 /* Atomic datatype class for nbit */ #define H5Z_NBIT_ARRAY 2 /* Array datatype class for nbit */ #define H5Z_NBIT_COMPOUND 3 /* Compound datatype class for nbit */ @@ -100,10 +98,10 @@ H5Z_class_t H5Z_NBIT[1] = {{ * stored as second entry in the filter's cd_values[] * parms_index: index of array parms[] used by compression/decompression functions */ -static unsigned int cd_values_index = 0; -static unsigned int cd_values_actual_nparms = 0; +static unsigned cd_values_index = 0; +static unsigned cd_values_actual_nparms = 0; static unsigned char compress_ratio_is_zero = FALSE; -static unsigned int parms_index = 0; +static unsigned parms_index = 0; /*------------------------------------------------------------------------- |