Compare commits

..

No commits in common. "026f2524e681fb5035467846ef4c493f95c1f35f" and "efdb01328f16a96cd6c67169e1c3abc5148d067c" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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()}