Skip to content

Commit 1a86629

Browse files
fix(gix): adapt to changes in gix-object
1 parent fd42bb5 commit 1a86629

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gix/src/object/tree/iter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ impl std::fmt::Display for EntryRef<'_, '_> {
5050
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
5151
write!(
5252
f,
53-
"{:06o} {:>6} {}\t{}",
54-
*self.mode(),
53+
"{:>6o} {:>6} {}\t{}",
54+
self.mode(),
5555
self.mode().as_str(),
5656
self.id().shorten_or_id(),
5757
self.filename()

0 commit comments

Comments
 (0)