summaryrefslogtreecommitdiffstats
path: root/examples/frameCompress.c
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2021-08-21 20:50:38 (GMT)
committera1346054 <36859588+a1346054@users.noreply.github.com>2021-08-21 20:50:38 (GMT)
commiteb23590d13c14bb0ab5300c8bb356de2274b43b2 (patch)
tree16d08143904bd92672fcc534406b94e7a6695379 /examples/frameCompress.c
parent6a8e21d8022a6880c9f46803463ebf93723d0885 (diff)
downloadlz4-eb23590d13c14bb0ab5300c8bb356de2274b43b2.zip
lz4-eb23590d13c14bb0ab5300c8bb356de2274b43b2.tar.gz
lz4-eb23590d13c14bb0ab5300c8bb356de2274b43b2.tar.bz2
fix spelling
Diffstat (limited to 'examples/frameCompress.c')
-rw-r--r--examples/frameCompress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/frameCompress.c b/examples/frameCompress.c
index aac4a3b..4a88b50 100644
--- a/examples/frameCompress.c
+++ b/examples/frameCompress.c
@@ -125,7 +125,7 @@ compress_file(FILE* f_in, FILE* f_out)
assert(f_in != NULL);
assert(f_out != NULL);
- /* ressource allocation */
+ /* resource allocation */
LZ4F_compressionContext_t ctx;
size_t const ctxCreation = LZ4F_createCompressionContext(&ctx, LZ4F_VERSION);
void* const src = malloc(IN_CHUNK_SIZE);
@@ -286,7 +286,7 @@ static int decompress_file(FILE* f_in, FILE* f_out)
{
assert(f_in != NULL); assert(f_out != NULL);
- /* Ressource allocation */
+ /* Resource allocation */
void* const src = malloc(IN_CHUNK_SIZE);
if (!src) { perror("decompress_file(src)"); return 1; }