evas: get rid of clobbered warning.

This commit is contained in:
Cedric BAIL 2015-04-25 19:59:18 +02:00
parent 663bdcaf07
commit d22155487b
1 changed files with 6 additions and 4 deletions

View File

@ -94,7 +94,7 @@ evas_image_load_file_head_png(void *loader_data,
png_uint_32 w32, h32;
int bit_depth, color_type, interlace_type;
char hasa;
Eina_Bool r = EINA_FALSE;
volatile Eina_Bool r = EINA_FALSE;
opts = loader->opts;
f = loader->f;
@ -218,10 +218,12 @@ evas_image_load_file_data_png(void *loader_data,
unsigned int pack_offset;
int w, h;
int bit_depth, color_type, interlace_type;
char hasa, passes;
volatile char hasa;
char passes;
int i, j, p, k;
int scale_ratio = 1, image_w = 0, image_h = 0;
Eina_Bool r = EINA_FALSE;
volatile int scale_ratio = 1;
int image_w = 0, image_h = 0;
volatile Eina_Bool r = EINA_FALSE;
opts = loader->opts;
f = loader->f;