diff options
Diffstat (limited to 'src/lib/evas/main.c')
-rw-r--r-- | src/lib/evas/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/evas/main.c b/src/lib/evas/main.c index 92e927c2d5..e59877cdd6 100644 --- a/src/lib/evas/main.c +++ b/src/lib/evas/main.c | |||
@@ -70,7 +70,7 @@ evas_debug_error(void) | |||
70 | _evas_debug_init_from_env(); | 70 | _evas_debug_init_from_env(); |
71 | } | 71 | } |
72 | if (_evas_debug_show == _EVAS_DEBUG_SHOW) | 72 | if (_evas_debug_show == _EVAS_DEBUG_SHOW) |
73 | CRIT("Evas Magic Check Failed!!!"); | 73 | CRI("Evas Magic Check Failed!!!"); |
74 | } | 74 | } |
75 | 75 | ||
76 | void | 76 | void |
@@ -81,7 +81,7 @@ evas_debug_input_null(void) | |||
81 | _evas_debug_init_from_env(); | 81 | _evas_debug_init_from_env(); |
82 | } | 82 | } |
83 | if (_evas_debug_show == _EVAS_DEBUG_SHOW) | 83 | if (_evas_debug_show == _EVAS_DEBUG_SHOW) |
84 | CRIT("Input object pointer is NULL!"); | 84 | CRI("Input object pointer is NULL!"); |
85 | if (_evas_debug_abort) abort(); | 85 | if (_evas_debug_abort) abort(); |
86 | } | 86 | } |
87 | 87 | ||
@@ -94,7 +94,7 @@ evas_debug_magic_null(void) | |||
94 | } | 94 | } |
95 | if ((_evas_debug_show == _EVAS_DEBUG_SHOW) || | 95 | if ((_evas_debug_show == _EVAS_DEBUG_SHOW) || |
96 | (_evas_debug_show == _EVAS_DEBUG_DEFAULT)) | 96 | (_evas_debug_show == _EVAS_DEBUG_DEFAULT)) |
97 | CRIT("Input object is zero'ed out (maybe a freed object or zero-filled RAM)!"); | 97 | CRI("Input object is zero'ed out (maybe a freed object or zero-filled RAM)!"); |
98 | if (_evas_debug_abort) abort(); | 98 | if (_evas_debug_abort) abort(); |
99 | } | 99 | } |
100 | 100 | ||
@@ -107,7 +107,7 @@ evas_debug_magic_wrong(DATA32 expected, DATA32 supplied) | |||
107 | } | 107 | } |
108 | if ((_evas_debug_show == _EVAS_DEBUG_SHOW) || | 108 | if ((_evas_debug_show == _EVAS_DEBUG_SHOW) || |
109 | (_evas_debug_show == _EVAS_DEBUG_DEFAULT)) | 109 | (_evas_debug_show == _EVAS_DEBUG_DEFAULT)) |
110 | CRIT("Input object is wrong type\n" | 110 | CRI("Input object is wrong type\n" |
111 | " Expected: %08x - %s\n" | 111 | " Expected: %08x - %s\n" |
112 | " Supplied: %08x - %s", | 112 | " Supplied: %08x - %s", |
113 | expected, evas_debug_magic_string_get(expected), | 113 | expected, evas_debug_magic_string_get(expected), |
@@ -124,7 +124,7 @@ evas_debug_generic(const char *str) | |||
124 | } | 124 | } |
125 | if ((_evas_debug_show == _EVAS_DEBUG_SHOW) || | 125 | if ((_evas_debug_show == _EVAS_DEBUG_SHOW) || |
126 | (_evas_debug_show == _EVAS_DEBUG_DEFAULT)) | 126 | (_evas_debug_show == _EVAS_DEBUG_DEFAULT)) |
127 | CRIT("%s", str); | 127 | CRI("%s", str); |
128 | if (_evas_debug_abort) abort(); | 128 | if (_evas_debug_abort) abort(); |
129 | } | 129 | } |
130 | 130 | ||