summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-06-30 20:23:42 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-06-30 20:23:42 (GMT)
commit1f811eccebeb991faafd9ce21f5960b70cd555eb (patch)
treeaf7a8e15ec804bf2e45f6e2e35c1e5067e5f8b99 /src
parent8ca794438092595180b66bf06087e942e0a40bb7 (diff)
downloadhdf5-1f811eccebeb991faafd9ce21f5960b70cd555eb.zip
hdf5-1f811eccebeb991faafd9ce21f5960b70cd555eb.tar.gz
hdf5-1f811eccebeb991faafd9ce21f5960b70cd555eb.tar.bz2
[svn-r30126] Description:
Correct build error with non-debug parallel builds Tested on: MacOSX/64 10.11.5 (amazon) w/serial & parallel (h5committest forthcoming)
Diffstat (limited to 'src')
-rw-r--r--src/H5AC.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 0c6aac1..77a58fc 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -183,8 +183,10 @@ done:
herr_t
H5AC__init_package(void)
{
-#ifdef H5_DEBUG_BUILD
+#if defined H5_DEBUG_BUILD | defined H5_HAVE_PARALLEL
H5P_genplist_t *xfer_plist; /* Dataset transfer property list object */
+#endif /* defined H5_DEBUG_BUILD | defined H5_HAVE_PARALLEL */
+#ifdef H5_DEBUG_BUILD
H5FD_dxpl_type_t dxpl_type; /* Property indicating the type of the internal dxpl */
#endif /* H5_DEBUG_BUILD */
#ifdef H5_HAVE_PARALLEL