emile: fix build warning of Emile_Image.

Summary: initialized structure 'opts_region' for uninitialized build warning

Test Plan: N/A

Reviewers: raster, woohyun, cedric

Reviewed By: cedric

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D3993

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
junsu choi 2016-05-31 14:37:53 -07:00 committed by Cedric BAIL
parent 6bf9cd6ecc
commit 260377a376
1 changed files with 1 additions and 1 deletions

View File

@ -1614,7 +1614,7 @@ _emile_jpeg_data(Emile_Image *image,
struct
{
unsigned int x, y, w, h;
} opts_region;
} opts_region = {0, 0, 0, 0};
volatile int degree = 0;
volatile Eina_Bool change_wh = EINA_FALSE;
Eina_Bool line_done = EINA_FALSE;