From 3e4d488030a5b6e0f08cf4ccfbd1726128dcb56f Mon Sep 17 00:00:00 2001 From: jhendersonHDF Date: Mon, 25 Mar 2024 21:56:34 -0500 Subject: [PATCH] Fix a minor warning in h5test.c (#4242) --- test/h5test.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/h5test.c b/test/h5test.c index fcba51fa2fc..b6fc4c86953 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -843,13 +843,13 @@ h5_get_vfd_fapl(hid_t fapl) } else if (!strcmp(tok, "multi")) { /* Multi-file driver, general case of the split driver */ - H5FD_mem_t memb_map[H5FD_MEM_NTYPES]; - hid_t memb_fapl[H5FD_MEM_NTYPES]; - const char *memb_name[H5FD_MEM_NTYPES]; - char *sv[H5FD_MEM_NTYPES]; - haddr_t memb_addr[H5FD_MEM_NTYPES]; - H5FD_mem_t mt; - const int multi_memname_maxlen = 1024; + H5FD_mem_t memb_map[H5FD_MEM_NTYPES]; + hid_t memb_fapl[H5FD_MEM_NTYPES]; + const char *memb_name[H5FD_MEM_NTYPES]; + char *sv[H5FD_MEM_NTYPES]; + haddr_t memb_addr[H5FD_MEM_NTYPES]; + H5FD_mem_t mt; + const size_t multi_memname_maxlen = 1024; memset(memb_map, 0, sizeof(memb_map)); memset(memb_fapl, 0, sizeof(memb_fapl));