diff options
author | Michael Tokarev <mjt@tls.msk.ru> | 2023-07-14 14:32:41 +0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2023-07-25 17:13:20 +0300 |
commit | d8b71d96b336054ac3cd0c9351b0cb75c47281ad (patch) | |
tree | ea2b52db0e6f5e0cf3995a9567dcbd0ad0b0c46c /migration/multifd-zlib.c | |
parent | 3ee44ec72753ec0ff05ad1569dfa609203d722b2 (diff) |
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.c | 2 |
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) { |