Skip to content

Commit

Permalink
Tools: AP_Periph: Web: scripts: fix luacheck issue
Browse files Browse the repository at this point in the history
  • Loading branch information
IamPete1 committed Dec 21, 2024
1 parent 5e5aa13 commit f13d4f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tools/AP_Periph/Web/scripts/pppgw_webui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -442,13 +442,13 @@ end
--[[
client class for open connections
--]]
local function Client(_sock, _idx)
local function Client(sock_in, idx_in)
local self = {}

self.closed = false

local sock = _sock
local idx = _idx
local sock = sock_in
local idx = idx_in
local have_header = false
local header = ""
local header_lines = {}
Expand Down

0 comments on commit f13d4f1

Please sign in to comment.