2 Commits

Author SHA1 Message Date
yves-biener 743cdca174 mod: bump zg dependency version
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 26s
As the dependency is still using version 0.14.0, it still causes an
error during testing. Corresponding examples are still working as
expected.
2025-06-24 20:48:32 +02:00
yves-biener 7d8e902ce2 chor: bump zig version and fix corresponding errors 2025-06-24 20:47:47 +02:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -37,8 +37,8 @@
// internet connectivity. // internet connectivity.
.dependencies = .{ .dependencies = .{
.zg = .{ .zg = .{
.url = "git+https://codeberg.org/atman/zg#4a002763419a34d61dcbb1f415821b83b9bf8ddc", .url = "git+https://codeberg.org/atman/zg#0b05141b033043c5f7bcd72048a48eef6531ea6c",
.hash = "1220f3e29bc40856bfc06e0ee133f814b0011c76de987d8a6a458c2f34d82708899a", .hash = "zg-0.14.0-oGqU3KEFswIffnDu8eAE2XlhzwcfgjwtM6akIc5L7cEV",
}, },
}, },
.paths = .{ .paths = .{
+1 -1
View File
@@ -55,7 +55,7 @@ pub fn App(comptime E: type) type {
handler_ctx = this; handler_ctx = this;
var act = posix.Sigaction{ var act = posix.Sigaction{
.handler = .{ .handler = handleWinch }, .handler = .{ .handler = handleWinch },
.mask = posix.empty_sigset, .mask = posix.sigemptyset(),
.flags = 0, .flags = 0,
}; };
posix.sigaction(posix.SIG.WINCH, &act, null); posix.sigaction(posix.SIG.WINCH, &act, null);