aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-04-20 17:57:35 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-04-20 17:57:35 -0700
commita008fb0a71657ad02a05e312680f960caded414f (patch)
tree138f5a73848049a79409b9ba97cc1cae8360ee17 /lib/std
parente9477048e51898a15dfe988933122f25b09fe937 (diff)
downloadzig-a008fb0a71657ad02a05e312680f960caded414f.tar.gz
zig-a008fb0a71657ad02a05e312680f960caded414f.zip
std.fs: delete unused label
stage2 starting to catch problems with the standard library :)
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/fs.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/fs.zig b/lib/std/fs.zig
index 4d1d6351eb..ea1080e31c 100644
--- a/lib/std/fs.zig
+++ b/lib/std/fs.zig
@@ -570,7 +570,7 @@ pub const Dir = struct {
/// Memory such as file names referenced in this returned entry becomes invalid
/// with subsequent calls to `next`, as well as when this `Dir` is deinitialized.
pub fn next(self: *Self) Error!?Entry {
- start_over: while (true) {
+ while (true) {
const w = os.windows;
if (self.index >= self.end_index) {
var io: w.IO_STATUS_BLOCK = undefined;