]> git.proxmox.com Git - mirror_qemu.git/blobdiff - migration/multifd-zlib.c
migration: spelling fixes
[mirror_qemu.git] / migration / multifd-zlib.c
index 81701250ade1934f9de257261b03c4e13f678e82..37ce48621e7866da0995a44be6977daa3fde591a 100644 (file)
@@ -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) {