Fix compiler warning about uninitialized variables

Signed-off-by: Christopher <devilhorns@comcast.net>
This commit is contained in:
Christopher 2013-06-23 12:53:53 +01:00
parent 29b3c80385
commit 1633d7f3bb
1 changed files with 2 additions and 1 deletions

View File

@ -1028,7 +1028,8 @@ _ecore_evas_wl_common_border_update(Ecore_Evas *ee)
}
else
{
int fx, fy, fw, fh;
int fx = 0, fy = 0, fw = 0, fh = 0;
evas_object_show(wdata->frame);
_ecore_evas_wl_common_frame_border_size_get(wdata->frame,
&fx, &fy, &fw, &fh);