derekf pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f2756f92e8cb0c8dd3e4861ff4914bdfa626823f
commit f2756f92e8cb0c8dd3e4861ff4914bdfa626823f Author: Derek Foreman <der...@osg.samsung.com> Date: Wed Aug 30 12:17:13 2017 -0500 walyand_shm: Remove unused variable Nothing in here actually cares about the wl_display anymore. --- src/modules/evas/engines/wayland_shm/evas_shm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/modules/evas/engines/wayland_shm/evas_shm.c b/src/modules/evas/engines/wayland_shm/evas_shm.c index e7acd146fc..031b90fd35 100644 --- a/src/modules/evas/engines/wayland_shm/evas_shm.c +++ b/src/modules/evas/engines/wayland_shm/evas_shm.c @@ -61,7 +61,6 @@ struct _Shm_Leaf typedef struct _Shm_Surface Shm_Surface; struct _Shm_Surface { - struct wl_display *disp; struct wl_shm *shm; int w, h; int num_buff; @@ -593,7 +592,6 @@ _evas_shm_surface_create(Surface *s, int w, int h, int num_buff) surf->w = w; surf->h = h; - surf->disp = s->info->info.wl_display; surf->shm = s->info->info.wl_shm; surf->num_buff = num_buff; surf->alpha = s->info->info.destination_alpha; --