Remove return value in function returning void.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-08-02 11:36:07 +01:00
parent c32f155fb0
commit a39246c312
1 changed files with 1 additions and 1 deletions

View File

@ -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