From c4c2d065711cdb4012002bec5d94109eb4942828 Mon Sep 17 00:00:00 2001 From: Erlend Lind Madsen Date: Fri, 24 Jan 2025 14:59:46 +0700 Subject: [PATCH] fmt --- src/apprt/gtk/App.zig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/apprt/gtk/App.zig b/src/apprt/gtk/App.zig index 12bac989a..b36c5b96a 100644 --- a/src/apprt/gtk/App.zig +++ b/src/apprt/gtk/App.zig @@ -1075,9 +1075,7 @@ fn loadCustomCss(self: *App) !void { defer file.close(); log.info("loading gtk-custom-css path={s}", .{path}); - const contents = try file.reader().readAllAlloc( - self.core_app.alloc, - 5 * 1024 * 1024 // 5MB + const contents = try file.reader().readAllAlloc(self.core_app.alloc, 5 * 1024 * 1024 // 5MB ); defer self.core_app.alloc.free(contents);