mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
stand/lua: Consistently use semicolons for line endings
This commit is contained in:
parent
6401094f62
commit
27fac8ff4c
1 changed files with 3 additions and 3 deletions
|
|
@ -29,8 +29,8 @@
|
|||
local core = {};
|
||||
|
||||
-- Commonly appearing constants
|
||||
core.KEY_ENTER = 13
|
||||
core.KEY_BACKSPACE = 127
|
||||
core.KEY_ENTER = 13;
|
||||
core.KEY_BACKSPACE = 127;
|
||||
|
||||
function core.setVerbose(b)
|
||||
if (b == nil) then
|
||||
|
|
@ -169,5 +169,5 @@ function core.bootserial()
|
|||
return false;
|
||||
end
|
||||
|
||||
core.acpi = core.getACPIPresent(false)
|
||||
core.acpi = core.getACPIPresent(false);
|
||||
return core
|
||||
|
|
|
|||
Loading…
Reference in a new issue