summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2013-08-02 11:36:07 +0100
committerDeon Thomas <PrinceAMD.Elive@gmail.com>2013-08-02 10:45:05 -0400
commitbe9e1d24b5b477b17c9b3f55b4df1d43bfe08c5c (patch)
tree8642feda140c0c69c3cb6c59a7a3e1c3d23d03ef
parentaae26dbf64724020869f07a010385d810752f830 (diff)
downloadenlightenment-be9e1d24b5b477b17c9b3f55b4df1d43bfe08c5c.tar.gz
Backport: a39246c :: Remove return value in function returning void.
Signed-off-by: Chris Michael <cp.michael@samsung.com> Signed-off-by: Deon Thomas <PrinceAMD.Elive@gmail.com>
-rw-r--r--src/modules/conf_randr/e_smart_monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/conf_randr/e_smart_monitor.c b/src/modules/conf_randr/e_smart_monitor.c
index 13d5db96ba..e0373607fe 100644
--- a/src/modules/conf_randr/e_smart_monitor.c
+++ b/src/modules/conf_randr/e_smart_monitor.c
@@ -910,7 +910,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