fix wrong & in module loading check

This commit is contained in:
Mike Blumenkrantz 2013-06-12 08:59:15 +01:00
parent f85afc0646
commit 1944f758f6
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ e_module_all_load(void)
free(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);