use unsigned int for bit fields, as suggested by Gustavo
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 24 Mar 2009 11:44:19 +0000 (11:44 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 24 Mar 2009 11:44:19 +0000 (11:44 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@39677 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/modules/engines/software_x11/Evas_Engine_Software_X11.h

index 32d2697..36e0e04 100644 (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;