From c3ba0bbb1678401a73210dc414660fd4c5fe1529 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Fri, 19 Jul 2024 07:43:44 -0500 Subject: [PATCH] loop: fix another loop continuuation --- src/Loop.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Loop.zig b/src/Loop.zig index 006db26..7c6d88b 100644 --- a/src/Loop.zig +++ b/src/Loop.zig @@ -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;