diff options
| author | Tadeo Kondrak <me@tadeo.ca> | 2020-04-28 19:10:09 -0600 |
|---|---|---|
| committer | Tadeo Kondrak <me@tadeo.ca> | 2020-04-28 19:11:31 -0600 |
| commit | 350b2adacda217014dc511ccc4cd73f22ddaac22 (patch) | |
| tree | 519115799840c1abe4be6aa708a3ca5079fbd817 /lib/std/child_process.zig | |
| parent | eb183ad9febef775efabb1a4592f84d6cf088c28 (diff) | |
| download | zig-350b2adacda217014dc511ccc4cd73f22ddaac22.tar.gz zig-350b2adacda217014dc511ccc4cd73f22ddaac22.zip | |
std.meta.IntType -> std.meta.Int
Diffstat (limited to 'lib/std/child_process.zig')
| -rw-r--r-- | lib/std/child_process.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/child_process.zig b/lib/std/child_process.zig index 1bd0becfd0..12b76143ee 100644 --- a/lib/std/child_process.zig +++ b/lib/std/child_process.zig @@ -830,7 +830,7 @@ fn forkChildErrReport(fd: i32, err: ChildProcess.SpawnError) noreturn { os.exit(1); } -const ErrInt = std.meta.IntType(false, @sizeOf(anyerror) * 8); +const ErrInt = std.meta.Int(false, @sizeOf(anyerror) * 8); fn writeIntFd(fd: i32, value: ErrInt) !void { const file = File{ |
