authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-06-23 01:21:01 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-06-23 01:21:01 -07:00
log6886641f732ff3b1ffa7ef206f37183f244aeb69
tree905ddd2e34a8e43d85fd47a0464e9b90e5d0c10b
parent39da44aebc515c2dfb10d78f54a48bed85444196

saw a commit in the wild with more than 65535 additions in a single file

zig/b77e6013422a6e7066a14dbe82e8512636ba13d2

1 files changed, 2 insertions(+), 2 deletions(-)

git.zig+2-2
...@@ -635,8 +635,8 @@ pub const TreeDiff = struct {...@@ -635,8 +635,8 @@ pub const TreeDiff = struct {
635 after: State,635 after: State,
636 action: Action,636 action: Action,
637 sub_path: string,637 sub_path: string,
638 adds: u16,638 adds: u32,
639 subs: u16,639 subs: u32,
640 };640 };
641641
642 pub const State = struct {642 pub const State = struct {