summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo Lima Chaves <glima@profusion.mobi>2013-06-13 18:52:55 -0300
committerGustavo Lima Chaves <glima@profusion.mobi>2013-06-13 18:52:55 -0300
commit5938b36622ba6ff1babac2577551f9c8c0e4136f (patch)
tree7719aaab57ce23cbf48a45d67e931272273374dc
parent358721624ce234ba35659997c3a8e107ba08bd4c (diff)
downloadelementary-5938b36622ba6ff1babac2577551f9c8c0e4136f.tar.gz
It seems someone ditched the NO_RETURN-less version of a macro.
-rw-r--r--src/lib/elm_interface_scrollable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_interface_scrollable.c b/src/lib/elm_interface_scrollable.c
index 0e1578599..8b31cb984 100644
--- a/src/lib/elm_interface_scrollable.c
+++ b/src/lib/elm_interface_scrollable.c
@@ -1044,7 +1044,7 @@ _elm_scroll_content_size_get(const Evas_Object *obj,
Evas_Coord *h)
{
ELM_SCROLL_IFACE_DATA_GET_OR_RETURN(obj, sid);
- ELM_PAN_DATA_GET(sid->pan_obj, psd);
+ ELM_PAN_DATA_GET_OR_RETURN(sid->pan_obj, psd);
psd->api->content_size_get(sid->pan_obj, w, h);
}