From 41f2e87fc723cb88a5407222794c1853fa8b81b1 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 8 Oct 2015 16:11:01 +0200 Subject: [PATCH] src/h5core/h5_module_private-h: - bugfix in serial version of h5priv_end_throttle() --- src/h5core/h5_model_private.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/h5core/h5_model_private.h b/src/h5core/h5_model_private.h index 6841424..39da0bd 100644 --- a/src/h5core/h5_model_private.h +++ b/src/h5core/h5_model_private.h @@ -26,6 +26,7 @@ #include "h5core/h5_types.h" #include "h5core/h5_model.h" +#include "h5_private.h" #include "h5_mpi_private.h" #ifdef PARALLEL_IO @@ -97,8 +98,9 @@ h5priv_start_throttle (const h5_file_p f) { UNUSED_ARGUMENT (f); return H5_SUCCESS; } -static inline -h5priv_end_throttle (const h5_file_p f) + +static inline h5_err_t +h5priv_end_throttle (const h5_file_p f) { UNUSED_ARGUMENT (f); return H5_SUCCESS; }