Merge branch 'master' of ssh://git.shadowkat.net:2222/izaya/OC-misc into master

This commit is contained in:
Izaya 2020-10-19 13:35:56 +11:00
commit 8b3ccc8e4b
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ local function readBuffer(fi)
function stream.close()
fi:close()
end
return buffer.new("r",stream)
return buffer.new("rb",stream)
end
local function writeBuffer(fo)
@ -51,7 +51,7 @@ local function writeBuffer(fo)
fo:close()
end
fo:write("lz16") -- write header
return buffer.new("w",stream)
return buffer.new("wb",stream)
end
function lz16.buffer(stream)