From 76d8532b5465362f85b75a2a7a5cc3c419304a92 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Thu, 26 Dec 2013 12:22:05 +0900 Subject: efl: Unified eina critical manro to CRI. Being annoyed by different types of eina critical macros - CRI, CRIT, CRITICAL -, I concluded to unify them to one. Discussed on IRC and finally, CRI was chosen to meet the consistency with other macros - ERR, WRN, INF, DBG - in terms of the number of characters. If there is any missing bits, please let me know. --- src/lib/ecore_input_evas/ecore_input_evas_private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/ecore_input_evas') diff --git a/src/lib/ecore_input_evas/ecore_input_evas_private.h b/src/lib/ecore_input_evas/ecore_input_evas_private.h index c19cfbf675..1e40313065 100644 --- a/src/lib/ecore_input_evas/ecore_input_evas_private.h +++ b/src/lib/ecore_input_evas/ecore_input_evas_private.h @@ -29,9 +29,9 @@ extern int _ecore_input_evas_log_dom; #endif #define WRN(...) EINA_LOG_DOM_WARN(_ecore_input_evas_log_dom, __VA_ARGS__) -#ifdef CRIT -#undef CRIT +#ifdef CRI +#undef CRI #endif -#define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_input_evas_log_dom, __VA_ARGS__) +#define CRI(...) EINA_LOG_DOM_CRIT(_ecore_input_evas_log_dom, __VA_ARGS__) #endif -- cgit v1.2.1