summaryrefslogtreecommitdiffstats
path: root/lem/http/core.c
diff options
context:
space:
mode:
Diffstat (limited to 'lem/http/core.c')
-rw-r--r--lem/http/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lem/http/core.c b/lem/http/core.c
index e9a6628..da18ba6 100644
--- a/lem/http/core.c
+++ b/lem/http/core.c
@@ -274,7 +274,7 @@ parse_http_process(lua_State *T, struct lem_inputbuf *b)
n += b->buf[k] - '0';
}
- lua_pushnumber(T, n);
+ lua_pushinteger(T, n);
}
lua_setfield(T, -2, "status");
w = 0;