use unsigned int for bit fields, as suggested by Gustavo

SVN revision: 39677
This commit is contained in:
Vincent Torri 2009-03-24 11:44:19 +00:00
parent 96a8e95ec4
commit 98e76f6280
1 changed files with 5 additions and 5 deletions

View File

@ -39,11 +39,11 @@ struct _Evas_Engine_Info_Software_X11
int depth;
int rotation;
int alloc_grayscale : 1;
int debug : 1;
int shape_dither : 1;
int destination_alpha : 1;
int track_mask_changes : 1;
unsigned int alloc_grayscale : 1;
unsigned int debug : 1;
unsigned int shape_dither : 1;
unsigned int destination_alpha : 1;
unsigned int track_mask_changes : 1;
int alloc_colors_max;
} info;