From 2d5d961a60b72c5a7cffaf25d0d16b599f45343d Mon Sep 17 00:00:00 2001 From: Bimba Shrestha Date: Fri, 15 Nov 2019 19:00:53 -0800 Subject: [PATCH] Typo in comment --- lib/compress/zstd_compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compress/zstd_compress.c b/lib/compress/zstd_compress.c index 4ff825d9..0639d327 100644 --- a/lib/compress/zstd_compress.c +++ b/lib/compress/zstd_compress.c @@ -2482,7 +2482,7 @@ static size_t ZSTD_compressBlock_targetCBlockSize(ZSTD_CCtx* zc, * targetCBlockSize is best effort not a guarantee. */ if (cSize == ERROR(dstSize_tooSmall) || (dstCapacity - cSize) < 4) { /* We check (dstCapacity - cSize) < 4 above because we have to make sure - * to leave enouch room for the checksum that will eventually get added in + * to leave enough room for the checksum that will eventually get added in * the epilogue. Otherwise, we're just going to throw the dstSize_tooSmall * error there instead of here */ BYTE* const ostart = (BYTE*)dst;