diff options
| author | stilic <[email protected]> | 2026-05-06 15:24:42 +0200 |
|---|---|---|
| committer | stilic <[email protected]> | 2026-05-06 15:24:42 +0200 |
| commit | 4de77da5c950bf4359429f95380d1bc5a108f3b9 (patch) | |
| tree | 7cec7508a4b79d2a174178177aaf3c20d4a02f28 /src/net | |
| parent | a832c8e3c1abdd4bb267cb118ae85e94c8ce1c27 (diff) | |
fix for real this time
Diffstat (limited to 'src/net')
| -rw-r--r-- | src/net/websocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/websocket.c b/src/net/websocket.c index af37f32..06283f6 100644 --- a/src/net/websocket.c +++ b/src/net/websocket.c @@ -158,7 +158,7 @@ int l_ws_write(lua_State* L){ frame.mask = 0; frame.opcode = 0b0001; - uint64_t len; + size_t len; const char* s = lua_tolstring(L, 2, &len); str* f = str_init(""); |
