From: Vivek Ellur Date: Thu, 22 Oct 2015 19:37:44 +0000 (-0700) Subject: dayselector: fix warning related to argument type X-Git-Tag: v1.16.0-beta3~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a10e9664c8a51e9d8d8997ab53ec7e76b9a26220;p=platform%2Fupstream%2Felementary.git dayselector: fix warning related to argument type Summary: @fix Signed-off-by: Vivek Ellur Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3215 Signed-off-by: Cedric BAIL --- 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