From f4da01545f47f4f9b2a3959e0602d947b6954f1d Mon Sep 17 00:00:00 2001 From: John Mainzer Date: Tue, 31 May 2005 19:47:40 -0500 Subject: [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: --- test/cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cache.c b/test/cache.c index c6f4795..658aa4e 100644 --- a/test/cache.c +++ b/test/cache.c @@ -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 */ -- cgit v0.12