diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-05-25 12:42:18 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-05-25 12:42:18 (GMT) |
commit | 18ae45027c40ecf539260216a04ba1cfdf8b50d9 (patch) | |
tree | 706eda14b2f94705ac3d4e9d97608dc69c813582 /tools/test/h5repack/h5repacktst.c | |
parent | 946fd98b8d5b653b89cfdce279195810f389dedf (diff) | |
download | hdf5-18ae45027c40ecf539260216a04ba1cfdf8b50d9.zip hdf5-18ae45027c40ecf539260216a04ba1cfdf8b50d9.tar.gz hdf5-18ae45027c40ecf539260216a04ba1cfdf8b50d9.tar.bz2 |
Fixed additional minor warnings.
Diffstat (limited to 'tools/test/h5repack/h5repacktst.c')
-rw-r--r-- | tools/test/h5repack/h5repacktst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/h5repack/h5repacktst.c b/tools/test/h5repack/h5repacktst.c index 3b82383..efce43f 100644 --- a/tools/test/h5repack/h5repacktst.c +++ b/tools/test/h5repack/h5repacktst.c @@ -266,7 +266,7 @@ int main (void) fname = H5REPACK_FSPACE_FNAMES[j]; if(h5repack_init(&pack_options, 0, FALSE) < 0) GOERROR; - pack_options.fs_strategy = -1; /* "FSM_AGGR" specified via -S FSM_AGGR */ + pack_options.fs_strategy = (H5F_fspace_strategy_t)-1; /* "FSM_AGGR" specified via -S FSM_AGGR */ pack_options.fs_threshold = -1; /* "0" specified via -T 0 */ if(h5repack(fname, FSPACE_OUT, &pack_options) < 0) GOERROR; |