From 98e76f62802352423f528d993898949c8aa0c9f4 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Tue, 24 Mar 2009 11:44:19 +0000 Subject: [PATCH] use unsigned int for bit fields, as suggested by Gustavo SVN revision: 39677 --- .../engines/software_x11/Evas_Engine_Software_X11.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/legacy/evas/src/modules/engines/software_x11/Evas_Engine_Software_X11.h b/legacy/evas/src/modules/engines/software_x11/Evas_Engine_Software_X11.h index 32d2697d4c..36e0e04e7a 100644 --- a/legacy/evas/src/modules/engines/software_x11/Evas_Engine_Software_X11.h +++ b/legacy/evas/src/modules/engines/software_x11/Evas_Engine_Software_X11.h @@ -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;