From 6886641f732ff3b1ffa7ef206f37183f244aeb69 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Mon, 23 Jun 2025 01:21:01 -0700 Subject: [PATCH] saw a commit in the wild with more than 65535 additions in a single file zig/b77e6013422a6e7066a14dbe82e8512636ba13d2 --- git.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git.zig b/git.zig index 00167a02ef61821cfa8ea2960d53c81eb9bf4119..2c35bbd1e6b6497270a91ca13810281b49672074 100644 --- a/git.zig +++ b/git.zig @@ -635,8 +635,8 @@ pub const TreeDiff = struct { after: State, action: Action, sub_path: string, - adds: u16, - subs: u16, + adds: u32, + subs: u32, }; pub const State = struct { -- 2.54.0