diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2021-12-10 15:45:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 15:45:14 (GMT) |
commit | 8c592a2f64da551e666710afa6d3798c0f6315df (patch) | |
tree | fb2fa03113a69382ce06fc09541d6703bee7cfc2 /tools | |
parent | 5580d7ec815e506370c4b1d68fc5ed089442e15d (diff) | |
download | hdf5-8c592a2f64da551e666710afa6d3798c0f6315df.zip hdf5-8c592a2f64da551e666710afa6d3798c0f6315df.tar.gz hdf5-8c592a2f64da551e666710afa6d3798c0f6315df.tar.bz2 |
OESS-168: Remove clang warnings. (#1277)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/src/h5perf/perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/h5perf/perf.c b/tools/src/h5perf/perf.c index 50b18bc..84be7e8 100644 --- a/tools/src/h5perf/perf.c +++ b/tools/src/h5perf/perf.c @@ -119,7 +119,7 @@ static char *h5_fixname_real(const char *base_name, hid_t fapl, const char *_suf int main(int argc, char **argv) { - char * buf, *tmp, *buf2 = NULL, *tmp2 = NULL, *check; + char * buf = NULL, *tmp = NULL, *buf2 = NULL, *tmp2 = NULL, *check = NULL; int i, j, mynod = 0, nprocs = 1, my_correct = 1, correct, myerrno; double stim, etim; double write_tim = 0; |