From 8ebb6ecc3798e66a9ba98355983762bedfa1b72d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=9A=86=E4=BF=8A?= Date: Fri, 17 Mar 2023 09:57:13 +0000 Subject: [PATCH] migration: remove extra whitespace character for code style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix code style. Signed-off-by: 李皆俊 Reviewed-by: Juan Quintela Signed-off-by: Juan Quintela --- migration/ram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration/ram.c b/migration/ram.c index 79d881f735..0e68099bf9 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -3293,7 +3293,7 @@ static int ram_save_setup(QEMUFile *f, void *opaque) migration_ops = g_malloc0(sizeof(MigrationOps)); migration_ops->ram_save_target_page = ram_save_target_page_legacy; - ret = multifd_send_sync_main(f); + ret = multifd_send_sync_main(f); if (ret < 0) { return ret; }