diff options
| author | Veikka Tuominen <git@vexu.eu> | 2024-01-28 01:04:38 +0200 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2024-02-01 15:22:36 +0200 |
| commit | a4f27e8987ef3e2388839b6452b9f485ab82e7b7 (patch) | |
| tree | 6420c218896c0f44dea7353b8a9c00b01461c2ec /lib/std/pdb.zig | |
| parent | b0bea72588c685c1d6439f61d2e842756b5fc496 (diff) | |
| download | zig-a4f27e8987ef3e2388839b6452b9f485ab82e7b7.tar.gz zig-a4f27e8987ef3e2388839b6452b9f485ab82e7b7.zip | |
remove std.io.Mode
Diffstat (limited to 'lib/std/pdb.zig')
| -rw-r--r-- | lib/std/pdb.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/pdb.zig b/lib/std/pdb.zig index d0623145a0..9640ec3569 100644 --- a/lib/std/pdb.zig +++ b/lib/std/pdb.zig @@ -513,7 +513,7 @@ pub const Pdb = struct { }; pub fn init(allocator: mem.Allocator, path: []const u8) !Pdb { - const file = try fs.cwd().openFile(path, .{ .intended_io_mode = .blocking }); + const file = try fs.cwd().openFile(path, .{}); errdefer file.close(); return Pdb{ |
