diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-07-31 16:22:40 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-07-31 16:22:40 (GMT) |
commit | 4e1695576c49988a9d23c8f2a3d00601cb447593 (patch) | |
tree | ac48f2277271369b6cd2d956370f878c73ac1597 /tools/h5dump/h5dump.c | |
parent | ba181d404dd47666ca5005b2d845aac5ee0ae46e (diff) | |
download | hdf5-4e1695576c49988a9d23c8f2a3d00601cb447593.zip hdf5-4e1695576c49988a9d23c8f2a3d00601cb447593.tar.gz hdf5-4e1695576c49988a9d23c8f2a3d00601cb447593.tar.bz2 |
[svn-r23953] Update stream handling to allow binary mode - due to unjam fix.
Tested: local linux
Diffstat (limited to 'tools/h5dump/h5dump.c')
-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 8e60bf7..36192e0 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -1020,7 +1020,7 @@ parse_start: break; case 'O': - if (h5tools_set_output_file(opt_arg) < 0) { + if (h5tools_set_output_file(opt_arg, 0) < 0) { usage(h5tools_getprogname()); goto error; } |