mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
Fixed Windows dsets.c test failure.
A 'static' keyword was removed from an array that needs it on Windows during a warning removal overhaul. Replacing it fixes the error. Tested on: 64-bit Windows 7 w/ VS 2015
This commit is contained in:
parent
bad28040b0
commit
5309971949
@ -7949,7 +7949,7 @@ test_big_chunks_bypass_cache(hid_t fapl)
|
||||
/* Buffers for reading and writing data (1-D) */
|
||||
int *wdata = NULL, *rdata1 = NULL, *rdata2 = NULL;
|
||||
/* Buffer for reading and writing data (2-D) */
|
||||
int t_wdata[BYPASS_CHUNK_DIM/2][BYPASS_CHUNK_DIM/2], t_rdata1[BYPASS_DIM][BYPASS_DIM],
|
||||
static int t_wdata[BYPASS_CHUNK_DIM/2][BYPASS_CHUNK_DIM/2], t_rdata1[BYPASS_DIM][BYPASS_DIM],
|
||||
t_rdata2[BYPASS_CHUNK_DIM/2][BYPASS_CHUNK_DIM/2];
|
||||
int i, j; /* Local index variables */
|
||||
H5F_libver_t low; /* File format low bound */
|
||||
|
Loading…
Reference in New Issue
Block a user