diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-08 17:10:51 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-08 17:10:51 +0100 |
commit | a8b096516b2ef1791bc348e18baa7e7f5399de8f (patch) | |
tree | d5b43fb99c2898721ab605e16478d773e7eba5ba /net/websocket | |
parent | 6dcf53f7b284f265ce3f2215e33c6f0c28be5ce9 (diff) | |
download | prosody-a8b096516b2ef1791bc348e18baa7e7f5399de8f.tar.gz prosody-a8b096516b2ef1791bc348e18baa7e7f5399de8f.zip |
lint: Remove use of the 143 error code
Does not appear to be invoked by anything
Diffstat (limited to 'net/websocket')
-rw-r--r-- | net/websocket/frames.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/websocket/frames.lua b/net/websocket/frames.lua index c3333020..86752109 100644 --- a/net/websocket/frames.lua +++ b/net/websocket/frames.lua @@ -22,8 +22,8 @@ local t_concat = table.concat; local s_byte = string.byte; local s_char= string.char; local s_sub = string.sub; -local s_pack = string.pack; -- luacheck: ignore 143 -local s_unpack = string.unpack; -- luacheck: ignore 143 +local s_pack = string.pack; +local s_unpack = string.unpack; if not s_pack and softreq"struct" then s_pack = softreq"struct".pack; |