summaryrefslogtreecommitdiff
path: root/shared-core/sis_ds.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared-core/sis_ds.h')
-rw-r--r--shared-core/sis_ds.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-core/sis_ds.h b/shared-core/sis_ds.h
index eefc35d6..6a64ba07 100644
--- a/shared-core/sis_ds.h
+++ b/shared-core/sis_ds.h
@@ -85,8 +85,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;