summaryrefslogtreecommitdiff
path: root/shared-core/via_ds.h
diff options
context:
space:
mode:
authorThomas Hellstrom <unichrome@shipmail.org>2005-07-15 21:22:51 +0000
committerThomas Hellstrom <unichrome@shipmail.org>2005-07-15 21:22:51 +0000
commit567113788c030b367a28ea9253fbf34beef2789e (patch)
tree440552ee7a5cbd7b72b07f41fa5a0d036e349d6a /shared-core/via_ds.h
parent5a5478de7ab4ee2eef0308d8b4ce5c53222cd55e (diff)
VIA: Fix sparse warnings (Alexey Dobriyan)
Diffstat (limited to 'shared-core/via_ds.h')
-rw-r--r--shared-core/via_ds.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-core/via_ds.h b/shared-core/via_ds.h
index be9c7f9f..d2bb9f37 100644
--- a/shared-core/via_ds.h
+++ b/shared-core/via_ds.h
@@ -61,8 +61,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;