summaryrefslogtreecommitdiffstats
path: root/streaming/compression.c
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2022-02-21 09:30:08 +0200
committerGitHub <noreply@github.com>2022-02-21 10:30:08 +0300
commit4cb5435b8d16c6b117ef1774dcf324c75b5bab9d (patch)
treef7df43e2d31e304c296f8dfb23e7dd9f74c156b1 /streaming/compression.c
parent0a51695ef6514edac0163ebd26bfc830ca473cee (diff)
Fix typos (#12183)
Diffstat (limited to 'streaming/compression.c')
-rw-r--r--streaming/compression.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/streaming/compression.c b/streaming/compression.c
index 93810aaed6..65351ed08a 100644
--- a/streaming/compression.c
+++ b/streaming/compression.c
@@ -56,7 +56,7 @@ static void lz4_compressor_destroy(struct compressor_state **state)
/*
* Compress the given block of data
- * Comprecced data will remain in the internal buffer until the next invokation
+ * Comprecced data will remain in the internal buffer until the next invocation
* Return the size of compressed data block as result and the pointer to internal buffer using the last argument
* or 0 in case of error
*/
@@ -98,7 +98,7 @@ static size_t lz4_compressor_compress(struct compressor_state *state, const char
}
/*
- * Create and initalize compressor state
+ * Create and initialize compressor state
* Return the pointer to compressor_state structure created
*/
struct compressor_state *create_compressor()
@@ -318,7 +318,7 @@ static size_t lz4_decompressor_get(struct decompressor_state *state, char *data,
}
/*
- * Create and initalize decompressor state
+ * Create and initialize decompressor state
* Return the pointer to decompressor_state structure created
*/
struct decompressor_state *create_decompressor()