authorgravatar for bblack@wikimedia.orgBrandon Black <bblack@wikimedia.org> 2025-10-17 07:42:05-05:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-18 01:51:44+02:00
logd18f1dde4109a5da3425ae9eb837f721bc771653
tree4337bbbbd7a2de0e4a9881480ca3076b395c9d8c
parent798f6b85e3aa1dddb5da570e948ad94b1312c0e5

os.linux.timeval: use same field names as std.c

Otherwise, the field names in std.posix.timeval vary by target os. I think this was an accidental change during the work of #25610

1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/os/linux.zig+2-2
......@@ -8429,8 +8429,8 @@ pub const POSIX_FADV = switch (native_arch) {
84298429};
84308430
84318431pub const timeval = extern struct {
8432 tv_sec: isize,
8433 tv_usec: i64,
8432 sec: isize,
8433 usec: i64,
84348434};
84358435
84368436pub const timezone = extern struct {