diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-08-12 20:53:54 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-08-12 20:53:54 (GMT) |
commit | a3204d77e7e8f7b15b01a424ac1789e1f29ad210 (patch) | |
tree | 72de665dd209012259e517333546c9c257ad5136 /tools/h5dump | |
parent | f801cf4618277f7c61fa378a3934bb635c276e98 (diff) | |
download | hdf5-a3204d77e7e8f7b15b01a424ac1789e1f29ad210.zip hdf5-a3204d77e7e8f7b15b01a424ac1789e1f29ad210.tar.gz hdf5-a3204d77e7e8f7b15b01a424ac1789e1f29ad210.tar.bz2 |
[svn-r23994] 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"); } |