aboutsummaryrefslogtreecommitdiff
path: root/src/net/lua.c
diff options
context:
space:
mode:
authorame <[email protected]>2025-07-24 02:32:37 -0500
committerame <[email protected]>2025-07-24 02:32:37 -0500
commited2dd6874a905769c5cfc080333ab0b12f9a9fe8 (patch)
tree60e29dbb01635dc9a94e02709520baea1b63d5fe /src/net/lua.c
parentb392bec30ebdd4c84446623193b82531b8001b88 (diff)
errors and then,, yknow fix them
Diffstat (limited to 'src/net/lua.c')
-rw-r--r--src/net/lua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/lua.c b/src/net/lua.c
index ba9a204..d6bba65 100644
--- a/src/net/lua.c
+++ b/src/net/lua.c
@@ -75,7 +75,7 @@ int l_send(lua_State* L){
} else
i_write_header(L, header, &resp, content, len);
- int a = send(client_fd, resp->c, resp->len, MSG_NOSIGNAL);
+ send(client_fd, resp->c, resp->len, MSG_NOSIGNAL);
//
lua_pushstring(L, "client_fd");