]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Fix mini typo 2960/head
authorFrank Wessels <fwessels@xs4all.nl>
Tue, 28 Dec 2021 17:04:28 +0000 (09:04 -0800)
committerGitHub <noreply@github.com>
Tue, 28 Dec 2021 17:04:28 +0000 (09:04 -0800)
examples/streaming_compression_thread_pool.c

index 471ca863136301accff2155c09a6c42776d72718..21cb3d54999f33f2cf61a72c9f85bdacb1d1ff26 100644 (file)
@@ -60,7 +60,7 @@ static void *compressFile_orDie(void *data)
     CHECK_ZSTD( ZSTD_CCtx_setParameter(cctx, ZSTD_c_checksumFlag, 1) );
     ZSTD_CCtx_setParameter(cctx, ZSTD_c_nbWorkers, nbThreads);
 
-    /* This loop read from the input file, compresses that entire chunk,
+    /* This loop reads from the input file, compresses that entire chunk,
      * and writes all output produced to the output file.
      */
     size_t const toRead = buffInSize;