| author | |
| committer | |
| log | ca1b8dcc2891fc1b344e8d602cc593694a1e5008 |
| tree | aaf962af3485dec83adc74985433e0f7adc6d4d1 |
| parent | ab64fd7cb1a8e94e038a90578f933d095599b36f |
1 files changed, 2 insertions(+), 2 deletions(-)
git.zig+2-2| ... | ... | @@ -170,7 +170,7 @@ pub const Tree = struct { |
| 170 | 170 | file = 100, |
| 171 | 171 | directory = 40, |
| 172 | 172 | submodule = 160, |
| 173 | _, | |
| 173 | symlink = 120, | |
| 174 | 174 | |
| 175 | 175 | pub fn format(self: Type, comptime fmt: string, options: std.fmt.FormatOptions, writer: anytype) !void { |
| 176 | 176 | _ = fmt; |
| ... | ... | @@ -180,7 +180,7 @@ pub const Tree = struct { |
| 180 | 180 | .file => '-', |
| 181 | 181 | .directory => 'd', |
| 182 | 182 | .submodule => 'm', |
| 183 | _ => '?', | |
| 183 | .symlink => '-', | |
| 184 | 184 | }); |
| 185 | 185 | } |
| 186 | 186 | }; |