From 34f4c78ae671b22d1346a3ceabc341d91f7fafe2 Mon Sep 17 00:00:00 2001 From: discomfitor Date: Thu, 16 Feb 2012 22:41:52 +0000 Subject: [PATCH] void function returning a void function confuses my small american brain git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68043 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/elm_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_image.c b/src/lib/elm_image.c index 40e50fc..18bdc80 100644 --- a/src/lib/elm_image.c +++ b/src/lib/elm_image.c @@ -327,7 +327,7 @@ elm_image_aspect_fixed_set(Evas_Object *obj, Eina_Bool fixed) ELM_CHECK_WIDTYPE(obj, widtype); Widget_Data *wd = elm_widget_data_get(obj); if (!wd) return; - return _els_smart_icon_aspect_fixed_set(wd->img, fixed); + _els_smart_icon_aspect_fixed_set(wd->img, fixed); } EAPI Eina_Bool -- 2.7.4