From d82fb0e07f1e09a454d1ad2b906c6e868465c56e Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Thu, 17 Jul 2025 09:59:49 +0200 Subject: [PATCH] Berry fix missing coma (code actually not used in Tasmota) --- lib/libesp32/berry/src/be_maplib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libesp32/berry/src/be_maplib.c b/lib/libesp32/berry/src/be_maplib.c index bf05f1a29..2271a984b 100644 --- a/lib/libesp32/berry/src/be_maplib.c +++ b/lib/libesp32/berry/src/be_maplib.c @@ -237,7 +237,7 @@ void be_load_maplib(bvm *vm) { "insert", m_insert }, { "iter", m_iter }, { "keys", m_keys }, - { "tobool", m_tobool } + { "tobool", m_tobool }, { NULL, NULL } }; be_regclass(vm, "map", members);