src/h5core/h5_module_private-h:

- bugfix in serial version of h5priv_end_throttle()
This commit is contained in:
2015-10-08 16:11:01 +02:00
parent 347a447302
commit 41f2e87fc7
+4 -2
View File
@@ -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;
}