Compare commits
No commits in common. "026f2524e681fb5035467846ef4c493f95c1f35f" and "efdb01328f16a96cd6c67169e1c3abc5148d067c" have entirely different histories.
026f2524e6
...
efdb01328f
@ -34,7 +34,7 @@ end
|
||||
|
||||
function print(...) -- Writes each argument to the default output stream, separated by space.
|
||||
for k,v in ipairs({...}) do
|
||||
io.write((k>1 and "\t" or "")..tostring(v))
|
||||
io.write(tostring(v).."\t")
|
||||
end
|
||||
io.write("\n")
|
||||
end
|
||||
|
@ -18,7 +18,7 @@ function fsmanager.start()
|
||||
run = true
|
||||
return os.spawn(function()
|
||||
for addr, _ in component.list("filesystem") do
|
||||
fsmanager.mount(addr)
|
||||
mount(addr)
|
||||
end
|
||||
while run do
|
||||
local tE = {coroutine.yield()}
|
||||
|
Loading…
Reference in New Issue
Block a user