summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Mainzer <mainzer@hdfgroup.org>2005-09-28 22:00:55 (GMT)
committerJohn Mainzer <mainzer@hdfgroup.org>2005-09-28 22:00:55 (GMT)
commit6baed67905135dcb3f86b5472a36c7c201e93921 (patch)
treeb63e3ce58c8c39b9b7a3f19e8d16e19270345a67 /src
parentbe9a23cac35c2a259578e2a4ca5ae5ad67b04215 (diff)
downloadhdf5-6baed67905135dcb3f86b5472a36c7c201e93921.zip
hdf5-6baed67905135dcb3f86b5472a36c7c201e93921.tar.gz
hdf5-6baed67905135dcb3f86b5472a36c7c201e93921.tar.bz2
[svn-r11475] Purpose:
Bug fix Description: In production builds, H5MM_malloc was undefined in H5AC.c Solution: Include H5MMprivate.h in H5AC.c, which defines H5MM_malloc() in both debug and production modes. Platforms tested: h5committested, serial production build on Heping Misc. update:
Diffstat (limited to 'src')
-rw-r--r--src/H5AC.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index eff9137..4b00b52 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -61,6 +61,7 @@
#include "H5FDprivate.h" /* File drivers */
#include "H5FLprivate.h" /* Free Lists */
#include "H5Iprivate.h" /* IDs */
+#include "H5MMprivate.h" /* Memory management */
#include "H5Pprivate.h" /* Property lists */
#ifdef H5_HAVE_FPHDF5