cedric pushed a commit to branch master.

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

commit a10e9664c8a51e9d8d8997ab53ec7e76b9a26220
Author: Vivek Ellur <vivek.el...@samsung.com>
Date:   Thu Oct 22 12:37:44 2015 -0700

    dayselector: fix warning related to argument type
    
    Summary:
    @fix
    
    Signed-off-by: Vivek Ellur <vivek.el...@samsung.com>
    
    Reviewers: cedric
    
    Differential Revision: https://phab.enlightenment.org/D3215
    
    Signed-off-by: Cedric BAIL <ced...@osg.samsung.com>
---
 src/lib/elm_dayselector.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elm_dayselector.c b/src/lib/elm_dayselector.c
index 6f60147..0f76ab9 100644
--- a/src/lib/elm_dayselector.c
+++ b/src/lib/elm_dayselector.c
@@ -401,7 +401,7 @@ _items_create(Evas_Object *obj)
         strftime(buf, sizeof(buf), "%a", &time_daysel);
         elm_object_text_set(chk, buf);
 
-        snprintf(buf, sizeof(buf), "day%d", idx);
+        snprintf(buf, sizeof(buf), "day%u", idx);
         elm_layout_content_set(obj, buf, chk);
 
         // XXX: ACCESS

-- 


Reply via email to