elementary: Fix a warning

elc_naviframe.c: In function ‘_title_content_unset’:
elc_naviframe.c:786:17: warning: ‘content’ may be used uninitialized in this function

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 65682
This commit is contained in:
Mike McCormack 2011-11-29 09:24:41 +00:00 committed by Mike McCormack
parent 6ac6d1e6f0
commit e736f755f3
1 changed files with 1 additions and 1 deletions

View File

@ -783,7 +783,7 @@ _title_content_unset(Elm_Naviframe_Item *it, const char *part)
{
Elm_Naviframe_Content_Item_Pair *pair = NULL;
char buf[1028];
Evas_Object *content;
Evas_Object *content = NULL;
EINA_INLIST_FOREACH(it->content_list, pair)
{