summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/common
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2005-02-14 09:36:00 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2005-02-14 09:36:00 +0000
commit8352666a9db11cfc5f41b9ca0b135750b606d2f2 (patch)
tree6f80f0321e4ab720442f2db8db92c4b62e4c629b /src/mesa/drivers/dri/common
parent8d12a6d537ca346291bc3e3bc90cc73509f4b419 (diff)
mesa-fix-one-bit-signed-bitfield.patch from Jeff Muizelaar
Diffstat (limited to 'src/mesa/drivers/dri/common')
-rw-r--r--src/mesa/drivers/dri/common/mm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/common/mm.h b/src/mesa/drivers/dri/common/mm.h
index d52871d39f..176910d70b 100644
--- a/src/mesa/drivers/dri/common/mm.h
+++ b/src/mesa/drivers/dri/common/mm.h
@@ -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;