e: remove some warning.

Let's start by cleaning up this warning party !


SVN revision: 70694
This commit is contained in:
Cedric BAIL 2012-05-03 11:02:35 +00:00
parent 94493ce3bc
commit 89ddff064e
2 changed files with 348 additions and 348 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3100,7 +3100,7 @@ e_border_find_by_window(Ecore_X_Window win)
}
EAPI E_Border *
e_border_find_by_alarm(Ecore_X_Sync_Alarm alarm)
e_border_find_by_alarm(Ecore_X_Sync_Alarm al)
{
Eina_List *l;
E_Border *bd;
@ -3108,7 +3108,7 @@ e_border_find_by_alarm(Ecore_X_Sync_Alarm alarm)
EINA_LIST_FOREACH(borders, l, bd)
{
if ((bd) && (!e_object_is_del(E_OBJECT(bd))) &&
(bd->client.netwm.sync.alarm == alarm))
(bd->client.netwm.sync.alarm == al))
return bd;
}
return NULL;