From 2d4db291d2b51d8b1970e5d3a6363b9dfd969b82 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Thu, 19 Feb 2015 17:00:24 -0500 Subject: [PATCH] fix compiler warning about pointer targets differ in signedness Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index e83729221..18c2e5a62 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -2281,8 +2281,8 @@ _e_comp_wl_output_bind(struct wl_client *client, void *data, uint32_t version, u wl_resource_set_user_data(resource, cdata); EINA_LIST_FOREACH(dev->outputs, l, output) { - int ox, oy, rw, rh, rr, pw, ph; - unsigned int spo; + int ox, oy, rw, rh, pw, ph; + unsigned int spo, rr; const char *make, *model; ecore_drm_output_position_get(output, &ox, &oy);