diff options
author | Woochanlee <wc0917.lee@samsung.com> | 2019-07-31 07:34:56 -0400 |
---|---|---|
committer | Christopher Michael <cp.michael@samsung.com> | 2019-07-31 07:34:56 -0400 |
commit | 740b91c9de4fd30d46b4deb50e3e3097fe6b26bd (patch) | |
tree | a63dfa7ecb9e0f3ee422e832d7ecda8556a33d5a /src/lib | |
parent | 6a1b0c3b2f81b8f2281f09668adcf55ed9a0db8f (diff) |
ecore_wl2: Changed log macro ERR->EINA_LOG_ERR.
Summary:
When the ecore_wl2_shutdown() calling without ecore_wl2_init().
It makes crash.
Reviewers: eagleeye, devilhorns
Reviewed By: devilhorns
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D9452
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_wl2/ecore_wl2.c b/src/lib/ecore_wl2/ecore_wl2.c index 0ea82c0e11..3219baa760 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -231,7 +231,7 @@ ecore_wl2_shutdown(void) | |||
231 | { | 231 | { |
232 | if (_ecore_wl2_init_count < 1) | 232 | if (_ecore_wl2_init_count < 1) |
233 | { | 233 | { |
234 | ERR("Ecore_Wl2 shutdown called without Ecore_Wl2 Init"); | 234 | EINA_LOG_ERR("Ecore_Wl2 shutdown called without Ecore_Wl2 Init"); |
235 | return 0; | 235 | return 0; |
236 | } | 236 | } |
237 | 237 | ||