raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a5489d322b85316a8be56c1a5aa6b0455b9e1332
commit a5489d322b85316a8be56c1a5aa6b0455b9e1332 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Sat Nov 12 09:16:27 2016 +0900 ecore imf - xim module - fix domain check to be be gteq 0 minor correctness fix. --- src/modules/ecore_imf/xim/ecore_imf_xim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ecore_imf/xim/ecore_imf_xim.c b/src/modules/ecore_imf/xim/ecore_imf_xim.c index 5258c74..04c5dfd 100644 --- a/src/modules/ecore_imf/xim/ecore_imf_xim.c +++ b/src/modules/ecore_imf/xim/ecore_imf_xim.c @@ -797,7 +797,7 @@ _ecore_imf_xim_shutdown(void) ecore_x_shutdown(); - if (_ecore_imf_xim_log_dom > 0) + if (_ecore_imf_xim_log_dom >= 0) { eina_log_domain_unregister(_ecore_imf_xim_log_dom); _ecore_imf_xim_log_dom = -1; --
