From: Wei Yang Date: Thu, 12 Sep 2019 02:49:57 +0000 (+0800) Subject: migration: fix one typo in comment of function migration_total_bytes() X-Git-Tag: v4.2.0~160^2 X-Git-Url: https://git.proxmox.com/?p=mirror_qemu.git;a=commitdiff_plain;h=268dcd46ae6d608a4ce93b191b51a318504bf1fb migration: fix one typo in comment of function migration_total_bytes() Signed-off-by: Wei Yang Message-Id: <20190912024957.11780-1-richardw.yang@linux.intel.com> Reviewed-by: Juan Quintela Signed-off-by: Dr. David Alan Gilbert --- diff --git a/migration/migration.c b/migration/migration.c index e45270c23b..01863a95f5 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -3025,7 +3025,7 @@ static MigThrError migration_detect_error(MigrationState *s) } } -/* How many bytes have we transferred since the beggining of the migration */ +/* How many bytes have we transferred since the beginning of the migration */ static uint64_t migration_total_bytes(MigrationState *s) { return qemu_ftell(s->to_dst_file) + ram_counters.multifd_bytes;