From a39246c3127c2a53ca163c84aa791611c80d4a20 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Fri, 2 Aug 2013 11:36:07 +0100 Subject: [PATCH] Remove return value in function returning void. Signed-off-by: Chris Michael --- src/modules/conf_randr/e_smart_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/conf_randr/e_smart_monitor.c b/src/modules/conf_randr/e_smart_monitor.c index 9565d28ff..bf4b5db36 100644 --- a/src/modules/conf_randr/e_smart_monitor.c +++ b/src/modules/conf_randr/e_smart_monitor.c @@ -926,7 +926,7 @@ e_smart_monitor_indicator_available_set(Evas_Object *obj, Eina_Bool available) E_Smart_Data *sd; /* try to get the objects smart data */ - if (!(sd = evas_object_smart_data_get(obj))) return 0; + if (!(sd = evas_object_smart_data_get(obj))) return; if (available) edje_object_signal_emit(sd->o_frame, "e,state,indicator,enabled", "e"); else