diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-06-20 21:09:32 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-06-20 21:09:32 (GMT) |
commit | 14e52dcfa926b19c3940e3efda938a1eacf332de (patch) | |
tree | 78b8094d918b70f7b5415742acd557b3f2bea231 | |
parent | d349bea008d2abea697e6cda3a42590f30460199 (diff) | |
download | hdf5-14e52dcfa926b19c3940e3efda938a1eacf332de.zip hdf5-14e52dcfa926b19c3940e3efda938a1eacf332de.tar.gz hdf5-14e52dcfa926b19c3940e3efda938a1eacf332de.tar.bz2 |
Set default of var to NATIVE
-rw-r--r-- | tools/lib/h5tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c index 22fd863..3729cac 100644 --- a/tools/lib/h5tools.c +++ b/tools/lib/h5tools.c @@ -40,7 +40,7 @@ FILE *rawinstream = NULL; /* should initialize to stdin but gcc moa FILE *rawoutstream = NULL; /* should initialize to stdout but gcc moans about it */ FILE *rawerrorstream = NULL; /* should initialize to stderr but gcc moans about it */ int bin_output; /* binary output */ -int bin_form; /* binary form */ +int bin_form = 0; /* binary form, default NATIVE */ int region_output; /* region output */ int oid_output; /* oid output */ int data_output; /* data output */ |