authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-04-20 17:57:35-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-04-20 17:57:35-07:00
loga008fb0a71657ad02a05e312680f960caded414f
tree138f5a73848049a79409b9ba97cc1cae8360ee17
parente9477048e51898a15dfe988933122f25b09fe937

std.fs: delete unused label

stage2 starting to catch problems with the standard library :)

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/fs.zig+1-1
......@@ -570,7 +570,7 @@ pub const Dir = struct {
570570 /// Memory such as file names referenced in this returned entry becomes invalid
571571 /// with subsequent calls to `next`, as well as when this `Dir` is deinitialized.
572572 pub fn next(self: *Self) Error!?Entry {
573 start_over: while (true) {
573 while (true) {
574574 const w = os.windows;
575575 if (self.index >= self.end_index) {
576576 var io: w.IO_STATUS_BLOCK = undefined;