mesa-fix-one-bit-signed-bitfield.patch from Jeff Muizelaar

This commit is contained in:
Keith Whitwell 2005-02-14 09:36:00 +00:00
parent 8d12a6d537
commit 8352666a9d
1 changed files with 2 additions and 2 deletions

View 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;