diff options
Diffstat (limited to 'savevm.c')
-rw-r--r-- | savevm.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1057,8 +1057,9 @@ int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd, } field++; } - if (vmsd->run_after_load) - return vmsd->run_after_load(opaque); + if (vmsd->post_load) { + return vmsd->post_load(opaque); + } return 0; } |