diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2013-08-02 21:23:39 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2013-08-02 21:23:39 (GMT) |
commit | bf9b274e275015db04298c7d078d951d8a76f238 (patch) | |
tree | adc7ee11f1e99a7330df09f3c15af86728a81f2c /tools | |
parent | 7a96201ee1c4eb6bc02827cbd451ce006fa71fff (diff) | |
download | hdf5-bf9b274e275015db04298c7d078d951d8a76f238.zip hdf5-bf9b274e275015db04298c7d078d951d8a76f238.tar.gz hdf5-bf9b274e275015db04298c7d078d951d8a76f238.tar.bz2 |
[svn-r23964] Corrected "continuous" layout to "contiguous in h5repack -h output and comment.
Jira issue HDFFV-8493.
No test - text only change.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5repack/h5repack_main.c | 2 | ||||
-rw-r--r-- | tools/h5repack/h5repack_parse.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack_main.c b/tools/h5repack/h5repack_main.c index f61c961..921b390 100644 --- a/tools/h5repack/h5repack_main.c +++ b/tools/h5repack/h5repack_main.c @@ -241,7 +241,7 @@ static void usage(const char *prog) printf(" <layout type> can be:\n"); printf(" CHUNK, to apply chunking layout\n"); printf(" COMPA, to apply compact layout\n"); - printf(" CONTI, to apply continuous layout\n"); + printf(" CONTI, to apply contiguous layout\n"); printf(" <layout parameters> is optional layout information\n"); printf(" CHUNK=DIM[xDIM...xDIM], the chunk size of each dimension\n"); printf(" COMPA (no parameter)\n"); diff --git a/tools/h5repack/h5repack_parse.c b/tools/h5repack/h5repack_parse.c index 70eadd2..9f798e9 100644 --- a/tools/h5repack/h5repack_parse.c +++ b/tools/h5repack/h5repack_parse.c @@ -460,7 +460,7 @@ obj_list_t* parse_filter(const char *str, * chunked. NULL, on error * the layout type can be: * CHUNK, to apply chunking layout - * CONTI, to apply continuous layout + * CONTI, to apply contiguous layout * COMPA, to apply compact layout * * Example: |