summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <devilhorns@comcast.net>2013-05-22 17:26:18 +0100
committerChris Michael <devilhorns@comcast.net>2013-05-22 17:26:18 +0100
commit54931cf7f6f6757cbd73f9f6db6c0c5ee9e6e86c (patch)
treeee58cb90b89c55a7c06952703cdaaa204c826732
parent68829b05d507fc676ae354eb7e4860693c327af0 (diff)
downloadenlightenment-54931cf7f6f6757cbd73f9f6db6c0c5ee9e6e86c.tar.gz
Fix several "variable may be used uninitialized" warnings.
Signed-off-by: Chris Michael <devilhorns@comcast.net>
-rw-r--r--src/bin/e_comp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 68597e5b86..8d75d70d74 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -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;