diff --git a/src/root.zig b/src/root.zig index 8d1c26c..4300304 100644 --- a/src/root.zig +++ b/src/root.zig @@ -121,7 +121,10 @@ pub const EventPoller = struct { } pub fn poll(self: *EventPoller) ![]SyncthingEvent { - var client = std.http.Client{ .allocator = self.allocator, .connection_pool = self.connection_pool }; + var client = std.http.Client{ + .allocator = self.allocator, + .connection_pool = self.connection_pool, + }; var arena = std.heap.ArenaAllocator.init(self.allocator); defer arena.deinit(); const aa = arena.allocator();