From 6209bc6cf9231abf0d486d5e9e70bbe5a5efc06d Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 18 Mar 2016 11:27:29 +0100 Subject: [PATCH] src/include/H5.h: - bugfixes in H5OpenFile1() and H5GetVerbosityLevel1() --- src/include/H5.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/H5.h b/src/include/H5.h index 4d7411a..6083b5e 100644 --- a/src/include/H5.h +++ b/src/include/H5.h @@ -324,7 +324,7 @@ H5OpenFile1 ( MPI_Comm comm ///< [in] MPI communicator ) { H5_API_ENTER (h5_file_p, "filename='%s', flags=%d, ...",filename,flags); - H5_API_RETURN (h5_open_file (filename, flags, comm, 0)); + H5_API_RETURN (h5_open_file1 (filename, flags, comm, 0)); } /** @@ -474,7 +474,7 @@ static inline h5_id_t H5GetVerbosityLevel ( void ) { - return h5_get_debuglevel (level) & 0x03; + return h5_get_debuglevel () & 0x03; } ///< @}