fix libbyteutil

This commit is contained in:
MihailRis 2025-01-17 03:58:22 +03:00
parent 40cdebb175
commit 17c4cd2054

View File

@ -198,8 +198,8 @@ static int l_tpack(lua::State* L) {
}
const luaL_Reg byteutillib[] = {
{"pack", l_pack},
{"tpack", l_tpack},
{"unpack", l_unpack},
{"pack", lua::wrap<l_pack>},
{"tpack", lua::wrap<l_tpack>},
{"unpack", lua::wrap<l_unpack>},
{NULL, NULL}
};