diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2019-08-01 15:18:45 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2019-08-01 15:18:45 (GMT) |
commit | 0c374d65c65e1c559efe7f81a4620af2d3676f07 (patch) | |
tree | eb8164de10b357f6c558b6630cb22699e758ddd5 /test/external_common.c | |
parent | 95910889d7ddba29f0343078b8e9b982d3bb974d (diff) | |
download | hdf5-0c374d65c65e1c559efe7f81a4620af2d3676f07.zip hdf5-0c374d65c65e1c559efe7f81a4620af2d3676f07.tar.gz hdf5-0c374d65c65e1c559efe7f81a4620af2d3676f07.tar.bz2 |
Fix conflicting types for reset_raw_data_files() parameter in external_common.c changed from int to hbool_t.
Change 0 and 1 to FALSE and TRUE in calls to reset_raw_data_files().
Diffstat (limited to 'test/external_common.c')
-rw-r--r-- | test/external_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/external_common.c b/test/external_common.c index c3aa455..c9b6584 100644 --- a/test/external_common.c +++ b/test/external_common.c @@ -35,7 +35,7 @@ *------------------------------------------------------------------------- */ herr_t -reset_raw_data_files(int is_env) +reset_raw_data_files(hbool_t is_env) { int fd = 0; /* external file descriptor */ size_t i, j; /* iterators */ |