diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2005-09-13 03:19:58 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2005-09-13 03:19:58 (GMT) |
commit | b379a469c0978b454d0ab7e9de87b94b69706520 (patch) | |
tree | 5684ac8a31e3f306cff173708170ccc7dda16608 /src/H5FS.c | |
parent | 48ae256b07e499a631e05d607f8ca25bbc5b1339 (diff) | |
download | hdf5-b379a469c0978b454d0ab7e9de87b94b69706520.zip hdf5-b379a469c0978b454d0ab7e9de87b94b69706520.tar.gz hdf5-b379a469c0978b454d0ab7e9de87b94b69706520.tar.bz2 |
[svn-r11402] Purpose: Maintenance
Description: Compiler complained about const type * variables that were
used in the functions that require "non const" parameters.
Compilation failed.
Solution: Use casting to avoid compilation errors.
Platforms tested: SX-6, heping and mir with new g95
Misc. update:
Diffstat (limited to 'src/H5FS.c')
-rw-r--r-- | src/H5FS.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -305,7 +305,7 @@ H5FS_close_stack(H5FS_t *stack) /* Free strings on stack */ for(u = 0; u < stack->nused; u++) - stack->slot[u] = H5MM_xfree(stack->slot[u]); + stack->slot[u] = H5MM_xfree((void *)stack->slot[u]); FUNC_LEAVE_NOAPI_NOFS(SUCCEED); } /* end H5FS_close_stack() */ |