From ca3d8c10f4fd69a4c7a4068baca5a1ab241868a5 Mon Sep 17 00:00:00 2001 From: Scot Breitenfeld Date: Thu, 7 Jan 2021 14:30:05 -0600 Subject: [PATCH] fixed H5O_info_t incompatiblity with H5Oget_info_by_idx3 --- h5_test/tst_h_atts3.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/h5_test/tst_h_atts3.c b/h5_test/tst_h_atts3.c index 48693768dd..924967ef79 100644 --- a/h5_test/tst_h_atts3.c +++ b/h5_test/tst_h_atts3.c @@ -209,7 +209,11 @@ main() hid_t file_typeid1[NUM_OBJ_1], native_typeid1[NUM_OBJ_1]; hid_t file_typeid2, native_typeid2; hsize_t num_obj; +#if H5_VERSION_GE(1,12,0) + H5O_info2_t obj_info; +#else H5O_info_t obj_info; +#endif char obj_name[STR_LEN + 1]; hsize_t dims[1] = {ATT_LEN}; /* netcdf attributes always 1-D. */