summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cpmichael@osg.samsung.com>2016-03-16 08:40:41 -0400
committerChris Michael <cpmichael@osg.samsung.com>2016-03-16 08:40:41 -0400
commitccd867e6ff64ecae2cd538f61a26e26d7d4e2959 (patch)
tree8fa5d9597008b657cf1bd105fe0b21ac8aad2195
parentd08abd43fd31dcc4b3ef763de84480edbbf46973 (diff)
downloadenlightenment-ccd867e6ff64ecae2cd538f61a26e26d7d4e2959.tar.gz
destroy seat resource when we get a release request
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
-rw-r--r--src/bin/e_comp_wl_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c
index 22147bae6c..3c13a4ec46 100644
--- a/src/bin/e_comp_wl_input.c
+++ b/src/bin/e_comp_wl_input.c
@@ -242,9 +242,9 @@ _e_comp_wl_input_cb_touch_get(struct wl_client *client EINA_UNUSED, struct wl_re
}
static void
-_e_comp_wl_input_cb_release(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED)
+_e_comp_wl_input_cb_release(struct wl_client *client EINA_UNUSED, struct wl_resource *resource)
{
- /* TODO: implement */
+ wl_resource_destroy(resource);
}
static const struct wl_seat_interface _e_seat_interface =