diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-09-13 21:11:30 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-09-13 21:11:30 (GMT) |
commit | a8c63e28d570c1eea5a23b9ed684efb4cd24e3ba (patch) | |
tree | a501ac6a79670c132cad11386a819ffaea570945 /tools/lib/h5diff.h | |
parent | 3c021d3a7775df18247de19cee3805178cd2666c (diff) | |
download | hdf5-a8c63e28d570c1eea5a23b9ed684efb4cd24e3ba.zip hdf5-a8c63e28d570c1eea5a23b9ed684efb4cd24e3ba.tar.gz hdf5-a8c63e28d570c1eea5a23b9ed684efb4cd24e3ba.tar.bz2 |
[svn-r24138] Cast constants to specified type.
Cast smaller vars to larger type.
Cast calculation result to correct type.
Changed int member to hbool_t
Tested: local linux
Diffstat (limited to 'tools/lib/h5diff.h')
-rw-r--r-- | tools/lib/h5diff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff.h b/tools/lib/h5diff.h index 9e1c8bb..04b640f 100644 --- a/tools/lib/h5diff.h +++ b/tools/lib/h5diff.h @@ -71,7 +71,7 @@ typedef struct { double percent; /* relative error value */ int n; /* count, compare up to count */ hsize_t count; /* count value */ - int follow_links; /* follow symbolic links */ + hbool_t follow_links; /* follow symbolic links */ int no_dangle_links; /* return error when find dangling link */ int err_stat; /* an error ocurred (1, error, 0, no error) */ int cmn_objs; /* do we have common objects */ |