From 8ed229bdae5c3e1ca0f46d3093b011c2fee2019f Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 17 Jun 2013 10:19:02 +0100 Subject: [PATCH] fix typo in e module --- src/bin/e_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_module.c b/src/bin/e_module.c index 0bf4b7f2c..186c97a99 100644 --- a/src/bin/e_module.c +++ b/src/bin/e_module.c @@ -82,7 +82,7 @@ e_module_all_load(void) EINA_LIST_FOREACH(e_config->modules, l, em) { if (!em) continue; - if ((em->delayed) && (em->enabled) & (!e_config->no_module_delay)) + if ((em->delayed) && (em->enabled) && (!e_config->no_module_delay)) { if (!_e_module_idler) _e_module_idler = ecore_idle_enterer_add(_e_module_cb_idler, NULL);