diff --git a/git.zig b/git.zig index ff094599ae854f9011beb2703c3aefa2621b393f..1a7aea8f3d6785b5866c1109cb62ca29f20d4a93 100644 --- a/git.zig +++ b/git.zig @@ -170,7 +170,7 @@ pub const Tree = struct { file = 100, directory = 40, submodule = 160, - _, + symlink = 120, pub fn format(self: Type, comptime fmt: string, options: std.fmt.FormatOptions, writer: anytype) !void { _ = fmt; @@ -180,7 +180,7 @@ pub const Tree = struct { .file => '-', .directory => 'd', .submodule => 'm', - _ => '?', + .symlink => '-', }); } };