From abb2a2e529198430dedd44ac5be8faea24e28290 Mon Sep 17 00:00:00 2001 From: lokilee73 Date: Wed, 14 Dec 2016 18:44:52 +0900 Subject: [PATCH] fix compile warning Change-Id: I6594546693b2a8cd869f472af62e1426d8b12b07 Signed-off-by: lokilee73 --- src/overheat/overheat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overheat/overheat.c b/src/overheat/overheat.c index fb6ec0a..3803822 100755 --- a/src/overheat/overheat.c +++ b/src/overheat/overheat.c @@ -289,7 +289,7 @@ int overheat_popup(bundle *b, const struct popup_ops *ops) elm_object_text_set(label2, gl_text_get(2)); /* set timer */ - if (!ecore_timer_add(1, update_overtemp_time, label2)) { + if (!ecore_timer_add(1, (Ecore_Task_Cb)update_overtemp_time, label2)) { _E("Fail to set timer"); return -EINVAL; } -- 2.7.4