From a6af331ab2bdc17eb333d40fb79c82ba5ff016aa Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Fri, 24 Jul 2026 08:25:21 +0800 Subject: [PATCH] zig fmt --- src/Notification.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Notification.zig b/src/Notification.zig index e8830f9a7..74fd5af3f 100644 --- a/src/Notification.zig +++ b/src/Notification.zig @@ -397,7 +397,7 @@ pub fn register(self: *Notification, comptime event: EventType, receiver: anytyp if (gop.found_existing) { for (gop.value_ptr.items) |existing| { if (existing.event == event) { - lp.assert(@as(*const anyopaque, @ptrCast(func)) == existing.func, "different notification callbacks per receiver", .{.event = event}); + lp.assert(@as(*const anyopaque, @ptrCast(func)) == existing.func, "different notification callbacks per receiver", .{ .event = event }); return; } }