summary refs log tree commit diff stats
path: root/migration/multifd-zlib.c
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2023-07-14 14:32:41 +0300
committerMichael Tokarev <mjt@tls.msk.ru>2023-07-25 17:13:20 +0300
commitd8b71d96b336054ac3cd0c9351b0cb75c47281ad (patch)
treeea2b52db0e6f5e0cf3995a9567dcbd0ad0b0c46c /migration/multifd-zlib.c
parent3ee44ec72753ec0ff05ad1569dfa609203d722b2 (diff)
downloadfocaccia-qemu-d8b71d96b336054ac3cd0c9351b0cb75c47281ad.tar.gz
focaccia-qemu-d8b71d96b336054ac3cd0c9351b0cb75c47281ad.zip
migration: spelling fixes
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Diffstat (limited to 'migration/multifd-zlib.c')
-rw-r--r--migration/multifd-zlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/multifd-zlib.c b/migration/multifd-zlib.c
index 81701250ad..37ce48621e 100644
--- a/migration/multifd-zlib.c
+++ b/migration/multifd-zlib.c
@@ -57,7 +57,7 @@ static int zlib_send_setup(MultiFDSendParams *p, Error **errp)
         err_msg = "deflate init failed";
         goto err_free_z;
     }
-    /* This is the maxium size of the compressed buffer */
+    /* This is the maximum size of the compressed buffer */
     z->zbuff_len = compressBound(MULTIFD_PACKET_SIZE);
     z->zbuff = g_try_malloc(z->zbuff_len);
     if (!z->zbuff) {