From 72365540a30b2df5529fb5444b84f3ab20c765d9 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 2 Nov 2018 23:56:27 +0100 Subject: [PATCH] src/include/h5core/h5_log.h: missing backslashes in definition of macro 'H5_API_ENTER()' if NDEBUG is set fixed --- src/include/h5core/h5_log.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/h5core/h5_log.h b/src/include/h5core/h5_log.h index cc94cb7..b719337 100644 --- a/src/include/h5core/h5_log.h +++ b/src/include/h5core/h5_log.h @@ -210,11 +210,11 @@ h5_get_loglevel ( // function enter macro #if defined(NDEBUG) -#define H5_API_ENTER(type, fmt, ...) \ - type ret_value = (type)H5_ERR; - h5_initialize(); +#define H5_API_ENTER(type, fmt, ...) \ + type ret_value = (type)H5_ERR; \ + h5_initialize(); \ h5_call_stack_reset (); \ - h5_call_stack_push (__func__,e_##type); \ + h5_call_stack_push (__func__,e_##type); #else // NDEBUG not defined