From 525bc1698652247098447f1aa28265905bf41b6c Mon Sep 17 00:00:00 2001 From: Larry Knox Date: Tue, 2 Jul 2024 16:42:34 -0500 Subject: [PATCH] Earray.c and farray.c in hdf5_1_14 still need time_t curr_time for HDsrandom. --- test/earray.c | 1 + test/farray.c | 1 + 2 files changed, 2 insertions(+) diff --git a/test/earray.c b/test/earray.c index 871c6fa46a9..078318af8a8 100644 --- a/test/earray.c +++ b/test/earray.c @@ -2297,6 +2297,7 @@ main(void) earray_iter_type_t curr_iter; /* Current iteration type being worked on */ hid_t fapl = H5I_INVALID_HID; /* File access property list for data files */ unsigned nerrors = 0; /* Cumulative error count */ + time_t curr_time; /* Current time, for seeding random number generator */ bool api_ctx_pushed = false; /* Whether API context pushed */ /* Reset library */ diff --git a/test/farray.c b/test/farray.c index 0c47a607306..7f6ce949dd7 100644 --- a/test/farray.c +++ b/test/farray.c @@ -1628,6 +1628,7 @@ main(void) farray_iter_type_t curr_iter; /* Current iteration type being worked on */ hid_t fapl = H5I_INVALID_HID; /* File access property list for data files */ unsigned nerrors = 0; /* Cumulative error count */ + time_t curr_time; /* Current time, for seeding random number generator */ bool api_ctx_pushed = false; /* Whether API context pushed */ /* Reset library */