mesa-fix-one-bit-signed-bitfield.patch from Jeff Muizelaar
authorKeith Whitwell <keith@tungstengraphics.com>
Mon, 14 Feb 2005 09:36:00 +0000 (09:36 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Mon, 14 Feb 2005 09:36:00 +0000 (09:36 +0000)
src/mesa/drivers/dri/common/mm.h

index d52871d..176910d 100644 (file)
@@ -30,8 +30,8 @@ struct mem_block_t {
   struct mem_block_t *heap;
   int ofs,size;
   int align;
-  int free:1;
-  int reserved:1;
+  unsigned int free:1;
+  unsigned int reserved:1;
 };
 typedef struct mem_block_t TMemBlock;
 typedef struct mem_block_t *PMemBlock;