diff options
Diffstat (limited to 'lib/std/os/linux.zig')
| -rw-r--r-- | lib/std/os/linux.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os/linux.zig b/lib/std/os/linux.zig index a001af709c..7f227ffec4 100644 --- a/lib/std/os/linux.zig +++ b/lib/std/os/linux.zig @@ -263,7 +263,7 @@ pub fn fork() usize { /// the compiler is not aware of how vfork affects control flow and you may /// see different results in optimized builds. pub inline fn vfork() usize { - return @call(.{ .modifier = .always_inline }, syscall0, .{.vfork}); + return @call(.always_inline, syscall0, .{.vfork}); } pub fn futimens(fd: i32, times: *const [2]timespec) usize { |
