summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5tools.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-05-13 21:42:16 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-05-13 21:42:16 (GMT)
commita44c942518d863b7fefffcd802cada4bc8d79517 (patch)
tree96c76811d815a839a7950d3e1b551802ac1a862d /tools/lib/h5tools.c
parent11562046e1ef45e8fe744a3ff1dab41fc698d876 (diff)
downloadhdf5-a44c942518d863b7fefffcd802cada4bc8d79517.zip
hdf5-a44c942518d863b7fefffcd802cada4bc8d79517.tar.gz
hdf5-a44c942518d863b7fefffcd802cada4bc8d79517.tar.bz2
[svn-r18796] Enhancement 1853:
Install packed-bits feature for h5dump. tools/h5dump/h5dump.c: Added lots of error checking into parse_mask_list() to catch and flagged packed-bits argument errors. For now, the packed bits are limited to 1 byte (8 bits) range. tools/h5dump/testh5dump.sh.in Added 10 new packed-bits test to verify normal operation and argument error detection. tools/lib/h5tools.h: tools/lib/h5tools_str.c: tools/lib/h5tools.c: Only name changes of the packed-bit global variables to reflect the nature of the variable better, IMO. Tested: albertPax (linux) ------------------------------------------------------------------------
Diffstat (limited to 'tools/lib/h5tools.c')
-rw-r--r--tools/lib/h5tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c
index ddfccf8..ff0437c 100644
--- a/tools/lib/h5tools.c
+++ b/tools/lib/h5tools.c
@@ -45,7 +45,7 @@ int region_output; /* region output */
static int h5tools_d_status = 0;
static const char *h5tools_progname = "h5tools";
#ifdef H5_HAVE_H5DUMP_PACKED_BITS
-int packed_output; /* number of packed bits to display */
+int packed_bits_num; /* number of packed bits to display */
int packed_normalize; /* number of bits to shift right to display normalized */
unsigned int packed_counter; /* counter for which packed bits to display */
#endif