summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2023-01-08 19:26:23 (GMT)
committerGitHub <noreply@github.com>2023-01-08 19:26:23 (GMT)
commit266359f7a6b8b057153d6bf054d23c48d4372fcf (patch)
tree33906ca3f3d34b9d4df79590e5bd81b12bc3e7fc
parentfe389cab107126686873d42301d254c08e4200ae (diff)
parentb1fd838cdbd09ecaa32c0bff62994f97b6426528 (diff)
downloadlz4-266359f7a6b8b057153d6bf054d23c48d4372fcf.zip
lz4-266359f7a6b8b057153d6bf054d23c48d4372fcf.tar.gz
lz4-266359f7a6b8b057153d6bf054d23c48d4372fcf.tar.bz2
Merge pull request #1204 from DimitriPapadopoulos/codespell
Fix typo found by codespell
-rw-r--r--ossfuzz/decompress_fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ossfuzz/decompress_fuzzer.c b/ossfuzz/decompress_fuzzer.c
index 490b3fd..b537af8 100644
--- a/ossfuzz/decompress_fuzzer.c
+++ b/ossfuzz/decompress_fuzzer.c
@@ -67,7 +67,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
/* Partial decompression with small prefix. */
LZ4_decompress_safe_partial_usingDict((char const*)dataAfterDict, dst, size,
dstCapacity, dstCapacity, smallDict, smallDictSize);
- /* Partial decompression wtih large prefix. */
+ /* Partial decompression with large prefix. */
LZ4_decompress_safe_partial_usingDict((char const*)dataAfterDict, dst, size,
dstCapacity, dstCapacity, largeDict, largeDictSize);
free(dst);