| ... | ... | @@ -164,7 +164,6 @@ export fn stage2_render_ast(tree: *ast.Tree, output_file: *FILE) Error { |
| 164 | 164 | error.OutOfMemory => return .OutOfMemory, |
| 165 | 165 | error.Unexpected => return .Unexpected, |
| 166 | 166 | error.InputOutput => return .FileSystem, |
| 167 | | error.InvalidFd => return .FileSystem, |
| 168 | 167 | }; |
| 169 | 168 | return .None; |
| 170 | 169 | } |
| ... | ... | @@ -636,7 +635,6 @@ export fn stage2_libc_parse(stage1_libc: *Stage2LibCInstallation, libc_file_z: [ |
| 636 | 635 | error.NotDir => return .NotDir, |
| 637 | 636 | error.DeviceBusy => return .DeviceBusy, |
| 638 | 637 | error.FileLocksNotSupported => unreachable, |
| 639 | | error.InvalidFd => return .FileSystem, |
| 640 | 638 | }; |
| 641 | 639 | stage1_libc.initFromStage2(libc); |
| 642 | 640 | return .None; |
| ... | ... | @@ -681,7 +679,6 @@ export fn stage2_libc_render(stage1_libc: *Stage2LibCInstallation, output_file: |
| 681 | 679 | error.AccessDenied => return .AccessDenied, |
| 682 | 680 | error.Unexpected => return .Unexpected, |
| 683 | 681 | error.InputOutput => return .FileSystem, |
| 684 | | error.InvalidFd => return .FileSystem, |
| 685 | 682 | }; |
| 686 | 683 | return .None; |
| 687 | 684 | } |