diff options
author | Juan Quintela <quintela@redhat.com> | 2009-09-29 22:48:20 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-05 09:32:36 -0500 |
commit | 84e2e3eb5f20248ce85d11b8b751e2bd01d8fd95 (patch) | |
tree | 3273be0631e4876e9703ff020560fc8072c4ea81 /hw/pci.c | |
parent | 50af324697cb91d3e7a820e2b94ee0237c0103e2 (diff) |
vmstate: remove const for put operations
In a later patch, we introduce pre_save() and post_save() functions.
The whole point of that operation is to change things in the state.
Without this patch, we have to remove the const qualifier in each
use with a cast
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pci.c')
-rw-r--r-- | hw/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -156,7 +156,7 @@ static int get_pci_config_device(QEMUFile *f, void *pv, size_t size) } /* just put buffer */ -static void put_pci_config_device(QEMUFile *f, const void *pv, size_t size) +static void put_pci_config_device(QEMUFile *f, void *pv, size_t size) { const uint8_t *v = pv; qemu_put_buffer(f, v, size); |