diff options
author | 2024-05-16 12:40:21 +0400 | |
---|---|---|
committer | 2024-05-22 17:34:40 -0300 | |
commit | f0937ec669f9f39f5ece39f62d048606b9ee3877 (patch) | |
tree | 1e7f81e8782869f3fe5709dcf5799ce097eda59d | |
parent | migration: add "exists" info to load-state-field trace (diff) | |
download | qemu-f0937ec669f9f39f5ece39f62d048606b9ee3877.tar.xz qemu-f0937ec669f9f39f5ece39f62d048606b9ee3877.zip |
migration: fix a typo
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Fiona Ebner <f.ebner@proxmox.com>
Tested-by: Fiona Ebner <f.ebner@proxmox.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
-rw-r--r-- | migration/vmstate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/vmstate.c b/migration/vmstate.c index b51212a75b..ff5d589a6d 100644 --- a/migration/vmstate.c +++ b/migration/vmstate.c @@ -479,7 +479,7 @@ static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd, len = qemu_peek_byte(f, 1); if (len < strlen(vmsd->name) + 1) { - /* subsection name has be be "section_name/a" */ + /* subsection name has to be "section_name/a" */ trace_vmstate_subsection_load_bad(vmsd->name, "(short)", ""); return 0; } |