diff --git a/src/modules/illume-indicator/e_mod_main.c b/src/modules/illume-indicator/e_mod_main.c index 8b6731df9..54c33925f 100644 --- a/src/modules/illume-indicator/e_mod_main.c +++ b/src/modules/illume-indicator/e_mod_main.c @@ -34,7 +34,7 @@ e_modapi_init(E_Module *m) #ifdef HAVE_ENOTIFY /* init notification subsystem */ - if (!e_notification_init()) + if (!e_notification_daemon_init()) { /* shutdown config */ il_ind_config_shutdown(); @@ -92,7 +92,7 @@ e_modapi_shutdown(E_Module *m __UNUSED__) #ifdef HAVE_ENOTIFY /* shutdown notification subsystem */ - e_notification_shutdown(); + e_notification_daemon_shutdown(); #endif /* shutdown config */ diff --git a/src/modules/illume-indicator/e_mod_main.h b/src/modules/illume-indicator/e_mod_main.h index 72aad6728..596892698 100644 --- a/src/modules/illume-indicator/e_mod_main.h +++ b/src/modules/illume-indicator/e_mod_main.h @@ -2,7 +2,7 @@ # define E_MOD_MAIN_H # ifdef HAVE_ENOTIFY -# include +# include # endif EAPI extern E_Module_Api e_modapi;