From: Peter Krempa Date: Thu, 8 Sep 2022 11:17:01 +0000 (+0200) Subject: qemu: monitor: Renumber QEMU_MONITOR_MIGRATE_RESUME X-Git-Tag: v8.8.0-rc1~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0c680853a073c1b1fbba872351d73cb84a41568;p=thirdparty%2Flibvirt.git qemu: monitor: Renumber QEMU_MONITOR_MIGRATE_RESUME Now that all preceding flags were deleted we can fix the enum value. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/src/qemu/qemu_monitor.h b/src/qemu/qemu_monitor.h index c256e0f5ba..4d770486be 100644 --- a/src/qemu/qemu_monitor.h +++ b/src/qemu/qemu_monitor.h @@ -825,7 +825,7 @@ int qemuMonitorGetSEVCapabilities(qemuMonitor *mon, virSEVCapability **capabilities); typedef enum { - QEMU_MONITOR_MIGRATE_RESUME = 1 << 3, /* resume failed post-copy migration */ + QEMU_MONITOR_MIGRATE_RESUME = 1 << 0, /* resume failed post-copy migration */ QEMU_MONITOR_MIGRATION_FLAGS_LAST } QEMU_MONITOR_MIGRATE;