Commit f5672207 authored by Andreas's avatar Andreas Committed by Marcel Stör
Browse files

fixed missing forward declaration (#2975)

parent 948325a9
...@@ -50,6 +50,8 @@ local function to_string(addr, esc) ...@@ -50,6 +50,8 @@ local function to_string(addr, esc)
end end
end end
local conversion
local function readout(self) local function readout(self)
local next = false local next = false
local sens = self.sens local sens = self.sens
...@@ -114,7 +116,7 @@ local function readout(self) ...@@ -114,7 +116,7 @@ local function readout(self)
end end
end end
local function conversion(self) conversion = function (self)
local sens = self.sens local sens = self.sens
local powered_only = true local powered_only = true
for _, s in ipairs(sens) do powered_only = powered_only and s:byte(9) ~= 1 end for _, s in ipairs(sens) do powered_only = powered_only and s:byte(9) ~= 1 end
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment