h5_{s,g}et_debug_level() renamed to h5_{s,g}et_debuglevel()

This commit is contained in:
2010-07-08 10:05:10 +00:00
parent 362bb8d9a2
commit 77b1198151
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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;
+2 -2
View File
@@ -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
);