diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-02-20 15:36:18 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-02-20 15:36:18 (GMT) |
commit | 976576c308d696430de25a0ec195da61a2599407 (patch) | |
tree | db081bf4d6d55aa764b7c1e7928cb8daff4c4d1c /tools | |
parent | f2d9b4a00864ac29f37c89806076f2352db2c661 (diff) | |
download | hdf5-976576c308d696430de25a0ec195da61a2599407.zip hdf5-976576c308d696430de25a0ec195da61a2599407.tar.gz hdf5-976576c308d696430de25a0ec195da61a2599407.tar.bz2 |
[svn-r13345] replaced "CHUNKED-DIMENSION" for "CHUNKED-DIMENSION-SIZES" in the usage
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/h5import/h5import.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/h5import/h5import.c b/tools/h5import/h5import.c index d20d643..98d5e8c 100755 --- a/tools/h5import/h5import.c +++ b/tools/h5import/h5import.c @@ -2577,7 +2577,7 @@ help(char *name) (void) fprintf(stderr, "\t COMPRESSION-TYPE:\n"); (void) fprintf(stderr, "\t String denoting the type of compression to be\n"); (void) fprintf(stderr, "\t used with the chunked storage. Requires the\n"); - (void) fprintf(stderr, "\t CHUNKED-DIMENSION to be specified. The only \n"); + (void) fprintf(stderr, "\t CHUNKED-DIMENSION-SIZES to be specified. The only \n"); (void) fprintf(stderr, "\t currently supported compression method is GZIP. \n"); (void) fprintf(stderr, "\t Will accept the following value\n"); (void) fprintf(stderr, "\t GZIP\n\n"); @@ -2603,7 +2603,7 @@ help(char *name) (void) fprintf(stderr, "\t Integers separated by spaces to denote the \n"); (void) fprintf(stderr, "\t maximum dimension sizes of all the \n"); (void) fprintf(stderr, "\t dimensions determined by rank. Requires the\n"); - (void) fprintf(stderr, "\t CHUNKED-DIMENSION to be specified. A value of \n"); + (void) fprintf(stderr, "\t CHUNKED-DIMENSION-SIZES to be specified. A value of \n"); (void) fprintf(stderr, "\t -1 for any dimension implies UNLIMITED \n"); (void) fprintf(stderr, "\t DIMENSION size for that particular dimension.\n\n"); (void) fprintf(stderr, "\t EXAMPLES:\n"); @@ -2616,7 +2616,7 @@ help(char *name) (void) fprintf(stderr, "\t OUTPUT-SIZE 64\n"); (void) fprintf(stderr, "\t OUTPUT-ARCHITECTURE IEEE\n"); (void) fprintf(stderr, "\t OUTPUT-BYTE-ORDER LE\n"); - (void) fprintf(stderr, "\t CHUNKED-DIMENSION 2 2 2 \n\n"); + (void) fprintf(stderr, "\t CHUNKED-DIMENSION-SIZES 2 2 2 \n\n"); (void) fprintf(stderr, "\t The above configuration will accept a floating point array \n"); (void) fprintf(stderr, "\t (5 x 2 x 4) in an ASCII file with the rank and dimension sizes \n"); (void) fprintf(stderr, "\t specified and will save it in a chunked data-set (of pattern \n"); @@ -2630,7 +2630,7 @@ help(char *name) (void) fprintf(stderr, "\t DIMENSION-SIZES 6 3 5 2 4\n"); (void) fprintf(stderr, "\t OUTPUT-CLASS IN\n"); (void) fprintf(stderr, "\t OUTPUT-SIZE 32\n"); - (void) fprintf(stderr, "\t CHUNKED-DIMENSION 2 2 2 2 2\n"); + (void) fprintf(stderr, "\t CHUNKED-DIMENSION-SIZES 2 2 2 2 2\n"); (void) fprintf(stderr, "\t EXTENDIBLE-DATASET 1 3 \n"); (void) fprintf(stderr, "\t COMPRESSION-TYPE GZIP\n"); (void) fprintf(stderr, "\t COMPRESSION-PARAM 7\n\n\n"); |