From 552f28cb3e0beade8101ee4ffea48e221a4e8d6a Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 30 Aug 2025 02:27:05 +0300 Subject: [PATCH] Fix #86 - base64_decode on arm64 O_o --- src/util/str_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/str_util.cpp b/src/util/str_util.cpp index e0d8bfeb..259e7900 100644 --- a/src/util/str_util.cpp +++ b/src/util/str_util.cpp @@ -30,7 +30,7 @@ std::string base64_encode(const std::string &in) return out; } -static char T[256] = { 0 }; +static int T[256] = { 0 }; std::string base64_decode(const std::string &in) {