[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:
John Mainzer 2005-05-31 19:47:40 -05:00
parent 78bcbe927f
commit f4da01545f

View File

@ -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 */