mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
mesa-fix-one-bit-signed-bitfield.patch from Jeff Muizelaar
This commit is contained in:
parent
8d12a6d537
commit
8352666a9d
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue