From 77b119815156bc6b0b0394187e8e856087309f04 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 8 Jul 2010 10:05:10 +0000 Subject: [PATCH] h5_{s,g}et_debug_level() renamed to h5_{s,g}et_debuglevel() --- src/h5core/h5_errorhandling.c | 4 ++-- src/include/h5core/h5_errorhandling.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/h5core/h5_errorhandling.c b/src/h5core/h5_errorhandling.c index 08235b6..ccddf60 100644 --- a/src/h5core/h5_errorhandling.c +++ b/src/h5core/h5_errorhandling.c @@ -34,7 +34,7 @@ const char* const H5_O_MODES[] = { \return \c H5_ERR_INVAL if debug level is invalid. */ h5_err_t -h5_set_debug_level ( +h5_set_debuglevel ( const h5_id_t level /*!< debug level */ ) { if (level < 0 || level > 5) return H5_ERR_INVAL; @@ -50,7 +50,7 @@ h5_set_debug_level ( \return current debug level */ h5_id_t -h5_get_debug_level ( +h5_get_debuglevel ( void ) { return h5priv_debug_level; diff --git a/src/include/h5core/h5_errorhandling.h b/src/include/h5core/h5_errorhandling.h index 26fb422..6441cec 100644 --- a/src/include/h5core/h5_errorhandling.h +++ b/src/include/h5core/h5_errorhandling.h @@ -44,12 +44,12 @@ h5_err_t -h5_set_debug_level ( +h5_set_debuglevel ( const h5_id_t level ); h5_err_t -h5_get_debug_level ( +h5_get_debuglevel ( void );