From 59ffe3bed27c98aac069c4dee893a1fa748844a9 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 14 Oct 2015 10:19:43 -0400 Subject: [PATCH] enlightenment: Add missing field initializers for Eina_Rectangle Signed-off-by: Chris Michael --- src/bin/e_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_client.c b/src/bin/e_client.c index 136449e18..08fae4001 100644 --- a/src/bin/e_client.c +++ b/src/bin/e_client.c @@ -49,7 +49,7 @@ static Eina_List *handlers = NULL; static Ecore_Event_Handler *action_handler_key = NULL; static Ecore_Event_Handler *action_handler_mouse = NULL; static Ecore_Timer *action_timer = NULL; -static Eina_Rectangle action_orig = {0}; +static Eina_Rectangle action_orig = {0, 0, 0, 0}; static E_Client_Layout_Cb _e_client_layout_cb = NULL;