summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-03-26 22:18:51 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-03-26 22:18:51 (GMT)
commite517058a951f2227228e61086fcafc299174848a (patch)
tree2fed3b87f6557b4342a3019e4292427fb8876c49 /tools
parent2a15ef1ee86ee9a4d85702c235921b05320de194 (diff)
downloadhdf5-e517058a951f2227228e61086fcafc299174848a.zip
hdf5-e517058a951f2227228e61086fcafc299174848a.tar.gz
hdf5-e517058a951f2227228e61086fcafc299174848a.tar.bz2
[svn-r3715] Purpose:
Bug Fix Description: Stride flag was checked as being -T instead of -S as it should be... Solution: Changed to check -S instead of -T. Platforms tested: Linux
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump/h5dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c
index 2d8c77b..d5b1612 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -2446,7 +2446,7 @@ parse_start:
/** begin subsetting parameters **/
case 's':
- case 'T':
+ case 'S':
case 'c':
case 'k': {
struct subset_t *s;
@@ -2472,7 +2472,7 @@ parse_start:
* slightly convoluted, but...we are only interested in options
* for subsetting: "--start", "--stride", "--count", and "--block"
* which can come in any order. If we run out of parameters (EOF)
- * or run into one which isn't a subsetting parameter (NOT s, T,
+ * or run into one which isn't a subsetting parameter (NOT s, S,
* c, or K), then we exit the do-while look, set the subset_info
* to the structure we've been filling. If we've reached the end
* of the options, we exit the parsing (goto parse_end) otherwise,