diff options
author | Daniel Juyung Seo <seojuyung2@gmail.com> | 2013-12-26 12:22:05 +0900 |
---|---|---|
committer | Daniel Juyung Seo <seojuyung2@gmail.com> | 2013-12-26 12:27:13 +0900 |
commit | 76d8532b5465362f85b75a2a7a5cc3c419304a92 (patch) | |
tree | 73482a7b3a246f56d555fd206903db683b14c6aa /src/lib/ecore_psl1ght | |
parent | 10dd650d90d050889771f88d8b01eb7c1f51b0bd (diff) |
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/lib/ecore_psl1ght')
-rw-r--r-- | src/lib/ecore_psl1ght/ecore_psl1ght_private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ecore_psl1ght/ecore_psl1ght_private.h b/src/lib/ecore_psl1ght/ecore_psl1ght_private.h index bd5a86e2bb..b3def7955d 100644 --- a/src/lib/ecore_psl1ght/ecore_psl1ght_private.h +++ b/src/lib/ecore_psl1ght/ecore_psl1ght_private.h | |||
@@ -28,9 +28,9 @@ extern int _ecore_psl1ght_log_dom; | |||
28 | # endif | 28 | # endif |
29 | # define WRN(...) EINA_LOG_DOM_WARN(_ecore_psl1ght_log_dom, __VA_ARGS__) | 29 | # define WRN(...) EINA_LOG_DOM_WARN(_ecore_psl1ght_log_dom, __VA_ARGS__) |
30 | 30 | ||
31 | # ifdef CRIT | 31 | # ifdef CRI |
32 | # undef CRIT | 32 | # undef CRI |
33 | # endif | 33 | # endif |
34 | # define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_psl1ght_log_dom, __VA_ARGS__) | 34 | # define CRI(...) EINA_LOG_DOM_CRIT(_ecore_psl1ght_log_dom, __VA_ARGS__) |
35 | 35 | ||
36 | #endif | 36 | #endif |