remove gotos

This commit is contained in:
2026-03-12 19:31:37 -04:00
parent 45b46cf3c4
commit d08935b68a
4 changed files with 94 additions and 99 deletions

View File

@@ -136,7 +136,7 @@ for i,v in ipairs(split(fstab,"\n")) do
local id=""
for i=3,#v do
if v:sub(i,i)==";" then
if i==3 then kernel.log("Invalid fstab line... Skipping.","WARN") skip == true; break end
if i==3 then kernel.log("Invalid fstab line... Skipping.","WARN") skip = true break end
id=v:sub(3,i-1)
end
end