devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=2d4db291d2b51d8b1970e5d3a6363b9dfd969b82

commit 2d4db291d2b51d8b1970e5d3a6363b9dfd969b82
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Thu Feb 19 17:00:24 2015 -0500

    fix compiler warning about pointer targets differ in signedness
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 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 e837292..18c2e5a 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);

-- 


Reply via email to