summaryrefslogtreecommitdiff
path: root/src/edje_external
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2013-12-26 12:22:05 +0900
committerDaniel Juyung Seo <seojuyung2@gmail.com>2013-12-26 12:27:13 +0900
commit76d8532b5465362f85b75a2a7a5cc3c419304a92 (patch)
tree73482a7b3a246f56d555fd206903db683b14c6aa /src/edje_external
parent10dd650d90d050889771f88d8b01eb7c1f51b0bd (diff)
downloadefl-76d8532b5465362f85b75a2a7a5cc3c419304a92.tar.gz
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.
Diffstat (limited to 'src/edje_external')
-rw-r--r--src/edje_external/emotion/emotion.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edje_external/emotion/emotion.c b/src/edje_external/emotion/emotion.c
index 7ae0a0e5ca..77ed0a71ee 100644
--- a/src/edje_external/emotion/emotion.c
+++ b/src/edje_external/emotion/emotion.c
@@ -44,7 +44,7 @@ struct _External_Emotion_Signals_Proxy_Context
};
static int _log_dom = -1;
-#define CRITICAL(...) EINA_LOG_DOM_CRIT(_log_dom, __VA_ARGS__)
+#define CRI(...) EINA_LOG_DOM_CRIT(_log_dom, __VA_ARGS__)
#define ERR(...) EINA_LOG_DOM_ERR(_log_dom, __VA_ARGS__)
#define WRN(...) EINA_LOG_DOM_WARN(_log_dom, __VA_ARGS__)
#define INF(...) EINA_LOG_DOM_INFO(_log_dom, __VA_ARGS__)