derekf pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=def99a337f7dba89ddd6c8bf3b7a19e241d8dea9
commit def99a337f7dba89ddd6c8bf3b7a19e241d8dea9 Author: Derek Foreman <der...@osg.samsung.com> Date: Tue Sep 13 10:32:37 2016 -0500 Fix error print when wl_wl fails to start Probably copypastad from wl_drm, very confusing. --- src/modules/wl_wl/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/wl_wl/e_mod_main.c b/src/modules/wl_wl/e_mod_main.c index ad1162f..f385745 100644 --- a/src/modules/wl_wl/e_mod_main.c +++ b/src/modules/wl_wl/e_mod_main.c @@ -53,7 +53,7 @@ e_modapi_init(E_Module *m) } else { - fprintf(stderr, "Could not create ecore_evas_drm canvas"); + fprintf(stderr, "Could not create wayland canvas"); return NULL; } } --