From b516f4a95c1c3d43390951186db045b15d7737dd Mon Sep 17 00:00:00 2001 From: Evan Lojewski Date: Sun, 29 Mar 2020 17:42:33 -0600 Subject: build: Enable building with llvm 10.0.0 (#65) --- libs/Compress/compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/Compress') diff --git a/libs/Compress/compress.c b/libs/Compress/compress.c index 1cb63ff..5142498 100644 --- a/libs/Compress/compress.c +++ b/libs/Compress/compress.c @@ -247,7 +247,7 @@ int32_t compress(uint8_t *outBuffer, int32_t outBytes, const uint8_t *inBuffer, // Read F bytes into the last F bytes of the buffer. for (len = 0; len < F && inBuffer < inEnd; ++len) { - st.dict[r + len] = c = *inBuffer++; + st.dict[r + len] = *inBuffer++; } // Insert the F strings, each of which begins with one or more 'space' -- cgit v1.2.1