diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-12-25 16:12:26 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-12-25 16:12:26 +0000 |
commit | 2fe0ee97f9b138fb61dcdc2b98f0c4cf7f4dd9c7 (patch) | |
tree | 0a04cd17fa397209a0e924252e805a988f5c5a7e /hw/boards.h | |
parent | f6dc18df5c6582bec1aecb78b95f8201e6c9cc38 (diff) |
Fix Sparse error: dubious one-bit signed bitfield
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/boards.h')
-rw-r--r-- | hw/boards.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/boards.h b/hw/boards.h index e1beda308b..6f0f0d7925 100644 --- a/hw/boards.h +++ b/hw/boards.h @@ -19,7 +19,7 @@ typedef struct QEMUMachine { QEMUMachineInitFunc *init; int use_scsi; int max_cpus; - int no_serial:1, + unsigned int no_serial:1, no_parallel:1, use_virtcon:1, no_vga:1, |