diff options
author | Juan Quintela <quintela@redhat.com> | 2009-09-29 22:48:21 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-05 09:32:36 -0500 |
commit | 527b784eba1eda074fb3e5169ec06f2c4ba8867f (patch) | |
tree | ed2f7508721e328336bbea24f2a895f270a28476 /hw/fdc.c | |
parent | 255d59a4978206c3d0e16c8bc4964c938c66b1e7 (diff) | |
download | qemu-527b784eba1eda074fb3e5169ec06f2c4ba8867f.tar.gz qemu-527b784eba1eda074fb3e5169ec06f2c4ba8867f.tar.bz2 qemu-527b784eba1eda074fb3e5169ec06f2c4ba8867f.zip |
vmstate: add version_id argument to post_load
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/fdc.c')
-rw-r--r-- | hw/fdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -650,7 +650,7 @@ static void fdc_pre_save(const void *opaque) s->dor_vmstate = s->dor | GET_CUR_DRV(s); } -static int fdc_post_load(void *opaque) +static int fdc_post_load(void *opaque, int version_id) { fdctrl_t *s = opaque; |