summaryrefslogtreecommitdiff
path: root/src/elua.h
diff options
context:
space:
mode:
author彭宣正 <[email protected]>2022-09-05 19:06:35 +0800
committer彭宣正 <[email protected]>2022-09-05 19:15:57 +0800
commitc022c48a3b4abea0577faf4f3f625ee69684e454 (patch)
tree3908c9d3d8b1449d1611245ebd5c2cb8c5efc1f0 /src/elua.h
parent2a0f0af98db078dc159a138ef8d25048807222ea (diff)
✨ feat(TSG-11870): 修改数据类型string为buff
Diffstat (limited to 'src/elua.h')
-rw-r--r--src/elua.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elua.h b/src/elua.h
index b080a3f..7ced463 100644
--- a/src/elua.h
+++ b/src/elua.h
@@ -23,7 +23,7 @@ struct elua_data
enum elua_type type;
size_t len;
union{
- char *string;
+ char *buff;
long integer;
bool true_or_false;
struct elua_table *table;