| author | |
| committer | |
| log | a008fb0a71657ad02a05e312680f960caded414f |
| tree | 138f5a73848049a79409b9ba97cc1cae8360ee17 |
| parent | e9477048e51898a15dfe988933122f25b09fe937 |
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 { |
| 570 | 570 | /// Memory such as file names referenced in this returned entry becomes invalid |
| 571 | 571 | /// with subsequent calls to `next`, as well as when this `Dir` is deinitialized. |
| 572 | 572 | pub fn next(self: *Self) Error!?Entry { |
| 573 | start_over: while (true) { | |
| 573 | while (true) { | |
| 574 | 574 | const w = os.windows; |
| 575 | 575 | if (self.index >= self.end_index) { |
| 576 | 576 | var io: w.IO_STATUS_BLOCK = undefined; |