fix libbyteutil

This commit is contained in:
MihailRis
2025-01-17 03:58:22 +03:00
parent 40cdebb175
commit 17c4cd2054
+3 -3
View File
@@ -198,8 +198,8 @@ static int l_tpack(lua::State* L) {
} }
const luaL_Reg byteutillib[] = { const luaL_Reg byteutillib[] = {
{"pack", l_pack}, {"pack", lua::wrap<l_pack>},
{"tpack", l_tpack}, {"tpack", lua::wrap<l_tpack>},
{"unpack", l_unpack}, {"unpack", lua::wrap<l_unpack>},
{NULL, NULL} {NULL, NULL}
}; };