diff --git a/build.zig.zon b/build.zig.zon index 031ee905c..119756599 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -5,8 +5,8 @@ .dependencies = .{ // Zig libs .libxev = .{ - .url = "https://github.com/mitchellh/libxev/archive/116a813a78e3354837fff466b54e3e2e5ec7af01.tar.gz", - .hash = "1220bb2ecdf7659f20f6dfa88982ac55b6798281123523a37f05b91ceea90a87856b", + .url = "https://github.com/mitchellh/libxev/archive/418cac65473668b02cc5a85194042bdaf04acd00.tar.gz", + .hash = "12203116ff408eb48f81c947dfeb06f7feebf6a9efa962a560ac69463098b2c04a96", }, .mach_glfw = .{ .url = "https://github.com/der-teufel-programming/mach-glfw/archive/250affff8c52d1eaa0fab2ef1118f691bf1225ec.tar.gz", diff --git a/src/pty.zig b/src/pty.zig index 66014dc57..d1419fc3b 100644 --- a/src/pty.zig +++ b/src/pty.zig @@ -183,7 +183,7 @@ const WindowsPty = struct { "\\\\.\\pipe\\LOCAL\\ghostty-pty-{d}-{d}", .{ windows.kernel32.GetCurrentProcessId(), - pipe_name_counter.fetchAdd(1, .Monotonic), + pipe_name_counter.fetchAdd(1, .monotonic), }, ) catch unreachable;