From 5248b9fc6f52ba6d0bd4dc9984929ed2d67bcd11 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Thu, 19 Feb 2026 10:35:46 +0100 Subject: [PATCH] Update src/browser/webapi/animation/Animation.zig Co-authored-by: Karl Seguin --- src/browser/webapi/animation/Animation.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/webapi/animation/Animation.zig b/src/browser/webapi/animation/Animation.zig index a9443d90..04df7e90 100644 --- a/src/browser/webapi/animation/Animation.zig +++ b/src/browser/webapi/animation/Animation.zig @@ -163,7 +163,7 @@ pub fn deinit(self: *Animation, _: bool) void { } // callback function transitionning from a state to another -fn update(ctx: *anyopaque) anyerror!?u32 { +fn update(ctx: *anyopaque) !?u32 { const self: *Animation = @ptrCast(@alignCast(ctx)); switch (self._playState) {