From ce69c47f5fb8cef80cf7ae8e766e4db354598e6d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 19 May 2016 14:20:08 -0400 Subject: [PATCH] Rename lttng_error_type to lttng_error_level MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- src/common/error.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/error.h b/src/common/error.h index ad6113fa7..0fbd3a2ed 100644 --- a/src/common/error.h +++ b/src/common/error.h @@ -58,7 +58,7 @@ extern int lttng_opt_verbose; extern int lttng_opt_mi; /* Error type. */ -enum lttng_error_type { +enum lttng_error_level { PRINT_ERR = 0, PRINT_BUG = 1, PRINT_WARN = 2, @@ -68,7 +68,7 @@ enum lttng_error_type { PRINT_DBG3 = 6, }; -static inline bool __lttng_print_check_opt(enum lttng_error_type type) +static inline bool __lttng_print_check_opt(enum lttng_error_level type) { /* lttng_opt_mi and lttng_opt_quiet. */ switch (type) { @@ -117,7 +117,7 @@ static inline bool __lttng_print_check_opt(enum lttng_error_type type) void lttng_abort_on_error(void); -static inline void __lttng_print_check_abort(enum lttng_error_type type) +static inline void __lttng_print_check_abort(enum lttng_error_level type) { switch (type) { case PRINT_DBG3: -- 2.34.1