]> git.proxmox.com Git - mirror_qemu.git/commitdiff
migration: fix one typo in comment of function migration_total_bytes()
authorWei Yang <richardw.yang@linux.intel.com>
Thu, 12 Sep 2019 02:49:57 +0000 (10:49 +0800)
committerDr. David Alan Gilbert <dgilbert@redhat.com>
Thu, 12 Sep 2019 10:25:06 +0000 (11:25 +0100)
Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
Message-Id: <20190912024957.11780-1-richardw.yang@linux.intel.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
migration/migration.c

index e45270c23b7469d256065add7c9373e90e0181f8..01863a95f5fe8ff7c366fe943733cb61f563b530 100644 (file)
@@ -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;