loop: fix another loop continuuation

This commit is contained in:
Tim Culverhouse 2024-07-19 07:43:44 -05:00
parent 37941e59f5
commit c3ba0bbb16

View file

@ -149,7 +149,7 @@ pub fn Loop(comptime T: type) type {
buf[seq_start - initial_start] = buf[seq_start];
}
read_start = seq_start - initial_start + 1;
continue;
continue :read_loop;
}
read_start = 0;
seq_start += result.n;