From b34e2a40553cfb67499812262292dfd90efb7d0a Mon Sep 17 00:00:00 2001 From: Carter Li Date: Thu, 4 Jun 2026 15:53:37 +0800 Subject: [PATCH] Common (Base64): adds `static` to internal functions --- src/common/impl/base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/impl/base64.c b/src/common/impl/base64.c index 94f74f9e1..98a415ffb 100644 --- a/src/common/impl/base64.c +++ b/src/common/impl/base64.c @@ -34,7 +34,7 @@ void ffBase64EncodeRaw(uint32_t size, const char* str, uint32_t* out_size, char* static uint8_t decode_table[256]; -void init_decode_table() { +static void init_decode_table() { uint8_t ch = 0; do { int32_t code = -1;