summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Foreman <derekf@osg.samsung.com>2017-08-30 12:17:13 -0500
committerDerek Foreman <derekf@osg.samsung.com>2017-08-30 14:11:47 -0500
commitf2756f92e8cb0c8dd3e4861ff4914bdfa626823f (patch)
tree7da062a5ed4b64efb706852aeb1f56ed10224775
parente0d94b8234f32440f71a66249337ee541cf97c52 (diff)
downloadefl-f2756f92e8cb0c8dd3e4861ff4914bdfa626823f.tar.gz
walyand_shm: Remove unused variable
Nothing in here actually cares about the wl_display anymore.
-rw-r--r--src/modules/evas/engines/wayland_shm/evas_shm.c2
1 files changed, 0 insertions, 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;