diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-27 21:39:40 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-27 21:39:40 +0000 |
commit | 4fc5d0717682386fa7b28fff031f840fb7c8f489 (patch) | |
tree | 59f73de9eb7989f1bcbf1e12b2dba4e93810e5b3 /hw/boards.h | |
parent | 00f82b8a3166514f634c1c010c3b6175bcc6403b (diff) |
Fix a regression introduced by my previous commit, ram_size is now
unsigned.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4266 c046a42c-6fe2-441c-8c8c-71466251a162
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 7fb2df50f4..659c5590c5 100644 --- a/hw/boards.h +++ b/hw/boards.h @@ -15,7 +15,7 @@ typedef struct QEMUMachine { const char *desc; QEMUMachineInitFunc *init; #define RAMSIZE_FIXED (1 << 0) - size_t ram_require; + ram_addr_t ram_require; struct QEMUMachine *next; } QEMUMachine; |