Fix compiler warning about integer from pointer without cast.

SVN revision: 51588
This commit is contained in:
Christopher Michael 2010-08-23 20:47:01 +00:00
parent 9529a46ad3
commit f467fa997c
1 changed files with 3 additions and 3 deletions

View File

@ -371,14 +371,14 @@ e_int_menus_menu_augmentation_add_sorted(const char *menu,
if (_e_int_menus_augmentation)
{
l = eina_hash_find(_e_int_menus_augmentation, menu);
old = (l);
if ((l = eina_hash_find(_e_int_menus_augmentation, menu)))
old = EINA_TRUE;
}
else
{
_e_int_menus_augmentation = eina_hash_string_superfast_new(NULL);
l = NULL;
old = 0;
old = EINA_FALSE;
}
if ((!l) || (!maug->sort_key))