change bool field types to uint8_t in Fixie class

The bool type is 32 bits on Darwin/PowerPC, unlike other platforms.
To make bootimage creation consistent, we now use an explicit 8-bit
type.
This commit is contained in:
Joel Dice 2011-09-30 18:44:13 -06:00
parent d89a96ae6d
commit 043e466921

View File

@ -544,9 +544,9 @@ class Fixie {
// you add/remove/change fields in this class: // you add/remove/change fields in this class:
uint8_t age; uint8_t age;
bool hasMask; uint8_t hasMask;
bool marked; uint8_t marked;
bool dirty; uint8_t dirty;
uint32_t size; uint32_t size;
Fixie* next; Fixie* next;
Fixie** handle; Fixie** handle;