q66 pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=c6e38a3363a64f4d9e1a5e68efb2c7ed600c142f

commit c6e38a3363a64f4d9e1a5e68efb2c7ed600c142f
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Wed Jul 29 15:33:33 2015 +0100

    label: convert to int first (avoid compiler warning)
---
 src/lib/elm_label.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elm_label.c b/src/lib/elm_label.c
index 33429f8..c9d7fda 100644
--- a/src/lib/elm_label.c
+++ b/src/lib/elm_label.c
@@ -245,7 +245,7 @@ _get_value_in_key_string(const char *oldstring, const char 
*key, char **value)
         if ((!endtag) || (*endtag != '='))
              return -1;
 
-        firstindex = abs(oldstring - curlocater);
+        firstindex = abs((int)(oldstring - curlocater));
         firstindex += key_len + 1; // strlen("key") + strlen("=")
         *value = (char *)oldstring + firstindex;
 

-- 


Reply via email to