fix some issues

This commit is contained in:
Mitchell Hashimoto
2024-03-13 13:40:07 -07:00
parent a2c9ac558d
commit c2c115a768
2 changed files with 3 additions and 3 deletions

View File

@ -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",

View File

@ -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;