diff options
author | John Mainzer <mainzer@hdfgroup.org> | 2005-06-01 00:47:40 (GMT) |
---|---|---|
committer | John Mainzer <mainzer@hdfgroup.org> | 2005-06-01 00:47:40 (GMT) |
commit | f4da01545f47f4f9b2a3959e0602d947b6954f1d (patch) | |
tree | 0b7bea8c354afc27768d99d95ff86078ec7ae4a2 | |
parent | 78bcbe927f075988d8517c7cb7436ba318cf14c8 (diff) | |
download | hdf5-f4da01545f47f4f9b2a3959e0602d947b6954f1d.zip hdf5-f4da01545f47f4f9b2a3959e0602d947b6954f1d.tar.gz hdf5-f4da01545f47f4f9b2a3959e0602d947b6954f1d.tar.bz2 |
[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:
-rw-r--r-- | test/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |