From ea0f079473d01bfaf964478ba2650e18055201a7 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Mon, 7 Apr 2025 12:16:42 -0700 Subject: [PATCH] reformat --- src/root.zig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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();