Fix spell error (#2098)

This commit is contained in:
Weitao Liu
2025-10-16 23:10:14 +08:00
committed by GitHub
parent bdac405324
commit 2ecf32ec73
4 changed files with 7 additions and 7 deletions

View File

@@ -265,7 +265,7 @@ unpackreq_number(lua_State *L, const uint8_t * buf, int sz) {
return_buffer(L, (const char *)buf+9, sz-9);
if (session == 0) {
lua_pushnil(L);
lua_pushboolean(L,1); // is_push, no reponse
lua_pushboolean(L,1); // is_push, no response
return 6;
}
@@ -326,7 +326,7 @@ unpackreq_string(lua_State *L, const uint8_t * buf, int sz) {
return_buffer(L, (const char *)buf+2+namesz+4, sz - namesz - 6);
if (session == 0) {
lua_pushnil(L);
lua_pushboolean(L,1); // is_push, no reponse
lua_pushboolean(L,1); // is_push, no response
return 6;
}