From cce2e7aad315f17923bbb28ea24c1ba9f4ef8f7d Mon Sep 17 00:00:00 2001 From: slurdge Date: Sat, 6 Jun 2020 15:34:25 +0200 Subject: [PATCH] Remove inline to save 2.5Kb of flash --- common/lz4/lz4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lz4/lz4.c b/common/lz4/lz4.c index 8fb99d913..25be146fd 100644 --- a/common/lz4/lz4.c +++ b/common/lz4/lz4.c @@ -1669,7 +1669,7 @@ read_variable_length(const BYTE**ip, const BYTE* lencheck, int loop_check, int i * Note that it is important for performance that this function really get inlined, * in order to remove useless branches during compilation optimization. */ -LZ4_FORCE_INLINE int +int LZ4_decompress_generic( const char* const src, char* const dst,