diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5ACpkg.h | 4 | ||||
-rw-r--r-- | src/H5E.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/H5ACpkg.h b/src/H5ACpkg.h index b965a26..973f988 100644 --- a/src/H5ACpkg.h +++ b/src/H5ACpkg.h @@ -44,10 +44,6 @@ #include "H5Cpkg.h" /* Cache */ #include "H5SLprivate.h" /* Skip lists */ -#ifdef H5_HAVE_PARALLEL -#include <mpi.h> -#endif /* H5_HAVE_PARALLEL */ - #define H5AC_DEBUG_DIRTY_BYTES_CREATION 0 @@ -304,7 +304,7 @@ H5E_term_interface(void) * *------------------------------------------------------------------------- */ -static H5E_t * +H5E_t * H5E_get_stack(void) { H5E_t *estack; @@ -321,7 +321,7 @@ H5E_get_stack(void) /* Set the thread-specific info */ estack->nused = 0; estack->new_api = TRUE; - estack->u.func_stack = (H5E_auto2_t)H5Eprint2; + estack->u.func2 = (H5E_auto2_t)H5Eprint2; estack->auto_data = NULL; /* (It's not necessary to release this in this API, it is |