ecore_evas_x: make gl_sync_draw_done an explicit signed char type

Summary:
char type is interpreted as unsigned char in some implementations,
so setting -1 will be read as 255.
So we should explicitly make this a signed char type.
@fix

Test Plan: Local tests

Reviewers: cedric, jpeg

Reviewed By: jpeg

Subscribers: wonsik, cedric

Differential Revision: https://phab.enlightenment.org/D2895
This commit is contained in:
Dongyeon Kim 2015-07-30 10:14:14 +09:00 committed by Jean-Philippe Andre
parent b38b349262
commit dc1476ee09
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ struct _Ecore_Evas
0 : sync_draw_done is sent by ecore_evas
1 : sync_draw_done is sent by gl
*/
char gl_sync_draw_done;
signed char gl_sync_draw_done;
unsigned char ignore_events : 1;
unsigned char manual_render : 1;