diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-05-07 12:42:26 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-07 12:42:26 -0400 |
| commit | ba43492c0e4b37924caf5956b4dbaf832b964b81 (patch) | |
| tree | 37af3289400d9536f170c8bf439de7e2eaedbc4b /lib/std/event/loop.zig | |
| parent | 20c1696865fc859e4f02a1f7a3e2e4bf4177a2d8 (diff) | |
| parent | 84a0a9688caea0f7cfe19bac07d5b5d46a06d470 (diff) | |
| download | zig-ba43492c0e4b37924caf5956b4dbaf832b964b81.tar.gz zig-ba43492c0e4b37924caf5956b4dbaf832b964b81.zip | |
Merge pull request #5268 from tadeokondrak/remove-callconv-redundant-syntax
Remove syntax redundant with callconv
Diffstat (limited to 'lib/std/event/loop.zig')
| -rw-r--r-- | lib/std/event/loop.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/event/loop.zig b/lib/std/event/loop.zig index 04859b6205..8ef5f1d8e4 100644 --- a/lib/std/event/loop.zig +++ b/lib/std/event/loop.zig @@ -503,7 +503,7 @@ pub const Loop = struct { } } - pub async fn bsdWaitKev(self: *Loop, ident: usize, filter: i16, fflags: u32) void { + pub fn bsdWaitKev(self: *Loop, ident: usize, filter: i16, fflags: u32) callconv(.Async) void { var resume_node = ResumeNode.Basic{ .base = ResumeNode{ .id = ResumeNode.Id.Basic, |
