diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-08-12 20:54:14 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-08-12 20:54:14 (GMT) |
commit | 82642132ba607dce6ecdc03a2a6bdc2c5e84f24a (patch) | |
tree | 8ea2f6e4c7fc77266f7339d684a339f3427b5106 /tools/h5dump | |
parent | aa8d6d403ce4855b8d357b1abfb8380482343bb5 (diff) | |
download | hdf5-82642132ba607dce6ecdc03a2a6bdc2c5e84f24a.zip hdf5-82642132ba607dce6ecdc03a2a6bdc2c5e84f24a.tar.gz hdf5-82642132ba607dce6ecdc03a2a6bdc2c5e84f24a.tar.bz2 |
[svn-r23995] Correct printf % handling
Diffstat (limited to 'tools/h5dump')
-rw-r--r-- | tools/h5dump/h5dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index be6ee7f..8a2e503 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -358,7 +358,7 @@ usage(const char *prog) PRINTVALSTREAM(rawoutstream, "\n"); PRINTVALSTREAM(rawoutstream, " 8) Dataset foo in family files fam00000.h5 fam00001.h5 and fam00002.h5\n"); PRINTVALSTREAM(rawoutstream, "\n"); - PRINTVALSTREAM(rawoutstream, " h5dump -d /foo -f family fam%05d.h5\n"); + PRINTVALSTREAM(rawoutstream, " h5dump -d /foo -f family fam%%05d.h5\n"); PRINTVALSTREAM(rawoutstream, "\n"); } |