mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-24 15:25:00 +08:00
[svn-r10834] Purpose:
Fix a compile issue with the SX6 port. Description: In cache.c, invalid_configs array was declared as const, which caused problems when elements of the array were passed to H5Pset_mdc_config() Solution: Remove the const modifier from the declaration of invalid_configs. Platforms tested: Heping (serial) Misc. update:
This commit is contained in:
parent
78bcbe927f
commit
f4da01545f
@ -19322,7 +19322,7 @@ mdc_api_call_smoke_check(void)
|
||||
|
||||
#define NUM_INVALID_CONFIGS 29
|
||||
|
||||
const H5AC_cache_config_t invalid_configs[NUM_INVALID_CONFIGS] =
|
||||
H5AC_cache_config_t invalid_configs[NUM_INVALID_CONFIGS] =
|
||||
{
|
||||
{
|
||||
/* 0 -- bad version */
|
||||
|
Loading…
Reference in New Issue
Block a user