~sircmpwn/hare-compress

6c7fe22e7afaa6baabcf1e768f9cf5cf56ecb990 — Sertonix 1 year, 1 month ago 890c1e6
compress::gzip: update for latest stdlib

Updated hare-compress to compile/run with the latest hare stdlib.
1 files changed, 1 insertions(+), 1 deletions(-)

M compress/gzip/reader.ha
M compress/gzip/reader.ha => compress/gzip/reader.ha +1 -1
@@ 143,7 143,7 @@ fn readstr(s: io::handle, h: *hash::hash) (str | io::error) = {
	let out = memio::dynamic();
	let st = io::tee(s, h);
	for (true) {
		const ch = match (bufio::scanbyte(&st)?) {
		const ch = match (bufio::read_byte(&st)?) {
		case io::EOF =>
			return errors::invalid;
		case let ch: u8 =>