From 32c58250305540bf33b109f832956777e4bef73c Mon Sep 17 00:00:00 2001 From: LeRoyce Pearson Date: Tue, 17 Mar 2020 20:54:06 -0600 Subject: [PATCH] Match netbsd's flock fields with others --- lib/std/os/bits/netbsd.zig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/std/os/bits/netbsd.zig b/lib/std/os/bits/netbsd.zig index b67881088a7bcb55de54d41dc6b4fddfef8418cc..fba38e002d2c5fef9afe53d3becfc3715b0859a3 100644 --- a/lib/std/os/bits/netbsd.zig +++ b/lib/std/os/bits/netbsd.zig @@ -23,11 +23,11 @@ pub const dl_phdr_info = extern struct { }; pub const Flock = extern struct { - start: off_t, - len: off_t, - pid: pid_t, - lock_type: i16, - whence: i16, + l_start: off_t, + l_len: off_t, + l_pid: pid_t, + l_type: i16, + l_whence: i16, }; pub const msghdr = extern struct { -- 2.54.0