From: Mike McCormack Date: Mon, 7 Nov 2011 05:49:07 +0000 (+0900) Subject: Fix compile warning X-Git-Tag: REBUILDD-ARMEL-67367~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=92b6477204bd18ad41c44e96d3534da75e8cac4f;p=framework%2Fuifw%2Felementary.git Fix compile warning --- diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 8e368f1..7948ab3 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -5026,7 +5026,7 @@ EAPI Evas_Coord elm_entry_wrap_width_get(const Evas_Object *obj) { Widget_Data *wd = elm_widget_data_get(obj); - if (!wd) return; + if (!wd) return 0; return wd->wrap_w; }