Fix several "variable may be used uninitialized" warnings.

Signed-off-by: Chris Michael <devilhorns@comcast.net>
This commit is contained in:
Chris Michael 2013-05-22 17:26:18 +01:00
parent 68829b05d5
commit 54931cf7f6
1 changed files with 1 additions and 1 deletions

View File

@ -2125,7 +2125,7 @@ static E_Comp_Win *
_e_comp_win_add(E_Comp *c, Ecore_X_Window win, E_Border *bd, Eina_Bool force)
{
E_Comp_Win *cw;
int x, y, w, h, border;
int x = 0, y = 0, w, h, border = 0;
cw = calloc(1, sizeof(E_Comp_Win));
if (!cw) return NULL;