diff options
| author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-16 23:41:11 +0000 |
|---|---|---|
| committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-16 23:41:11 +0000 |
| commit | bee8d6842d1421ce3456779492561a92530e9c5a (patch) | |
| tree | df34a09af2cc2bfa13af3c749172a2932d7a3735 /hw/acpi.c | |
| parent | b99dc0d1a4d395bad649ef25abe21c5f076787a5 (diff) | |
| download | focaccia-qemu-bee8d6842d1421ce3456779492561a92530e9c5a.tar.gz focaccia-qemu-bee8d6842d1421ce3456779492561a92530e9c5a.zip | |
qemu_put signedness fixes, by Andre Przywara.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3824 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/acpi.c')
| -rw-r--r-- | hw/acpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/acpi.c b/hw/acpi.c index 5a4b1e4ee6..a2efd9c3ca 100644 --- a/hw/acpi.c +++ b/hw/acpi.c @@ -439,7 +439,7 @@ static void pm_save(QEMUFile* f,void *opaque) qemu_put_8s(f, &s->apmc); qemu_put_8s(f, &s->apms); qemu_put_timer(f, s->tmr_timer); - qemu_put_be64s(f, &s->tmr_overflow_time); + qemu_put_be64(f, s->tmr_overflow_time); } static int pm_load(QEMUFile* f,void* opaque,int version_id) @@ -460,7 +460,7 @@ static int pm_load(QEMUFile* f,void* opaque,int version_id) qemu_get_8s(f, &s->apmc); qemu_get_8s(f, &s->apms); qemu_get_timer(f, s->tmr_timer); - qemu_get_be64s(f, &s->tmr_overflow_time); + s->tmr_overflow_time=qemu_get_be64(f); pm_io_space_update(s); |