summaryrefslogtreecommitdiff
path: root/core/src/xmake/string
diff options
context:
space:
mode:
authorruki <[email protected]>2026-02-13 00:37:46 +0800
committerruki <[email protected]>2026-02-13 00:37:46 +0800
commit9bef17593093356600fcf1eab8ff1b18606a9624 (patch)
treea944d31e829ae6c6cb3275142cda7426efb19e23 /core/src/xmake/string
parent529e5245342b028c6dbf21760f6960bd20890dea (diff)
update tbox to fix tolower/toupperstring
Diffstat (limited to 'core/src/xmake/string')
-rw-r--r--core/src/xmake/string/lower.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/xmake/string/lower.c b/core/src/xmake/string/lower.c
index ef43f2385..71f8408dc 100644
--- a/core/src/xmake/string/lower.c
+++ b/core/src/xmake/string/lower.c
@@ -59,7 +59,7 @@ tb_int_t xm_string_lower(lua_State *lua) {
// to lower
tb_long_t real_size = tb_charset_utf8_tolower(buffer, size);
-
+
// push result
if (real_size >= 0) {
lua_pushlstring(lua, buffer, real_size);