diff options
| author | stilic <[email protected]> | 2026-05-06 15:16:27 +0200 |
|---|---|---|
| committer | stilic <[email protected]> | 2026-05-06 15:16:27 +0200 |
| commit | 0c003aecb135b7e419c53c231fc2c25c8f8dfccf (patch) | |
| tree | 7fd416968160fc8cb7e2c39be8c65ce4090e75b7 /src/net.c | |
| parent | 5aa3f628e4e7a74800cdeb9452875edb62c03d63 (diff) | |
fix 32bit compilation
Diffstat (limited to 'src/net.c')
| -rw-r--r-- | src/net.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ int i_ws_write(lua_State* L){ lua_gettable(L, 1);
struct net_data* data = lua_touserdata(L, -1);
- uint64_t clen;
+ size_t clen;
const char* content = luaL_tolstring(L, 2, &clen);
str* send_data = str_init("");
|
