fix compiler warning about pointer targets differ in signedness
authorChris Michael <cp.michael@samsung.com>
Thu, 19 Feb 2015 22:00:24 +0000 (17:00 -0500)
committerChris Michael <cp.michael@samsung.com>
Thu, 19 Feb 2015 22:00:24 +0000 (17:00 -0500)
Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/bin/e_comp_wl.c

index e83729221d6736a494a342caf34cec20a5eca79b..18c2e5a62e315ff74c8bdabde2ef1148d86bba08 100644 (file)
@@ -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);