File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
gitoxide-core/src/repository Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ fn print_index_entry_status(
220
220
) -> std:: io:: Result < ( ) > {
221
221
let char_storage;
222
222
let status = match status {
223
- EntryStatus :: Conflict ( conflict ) => as_str ( conflict ) ,
223
+ EntryStatus :: Conflict { summary , entries : _ } => as_str ( summary ) ,
224
224
EntryStatus :: Change ( change) => {
225
225
char_storage = change_to_char ( & change) ;
226
226
std:: str:: from_utf8 ( std:: slice:: from_ref ( & char_storage) ) . expect ( "valid ASCII" )
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ pub mod iter {
489
489
use gix_status:: index_as_worktree_with_renames:: Summary :: * ;
490
490
Some ( match self {
491
491
Item :: Modification { status, .. } => match status {
492
- EntryStatus :: Conflict ( _ ) => Conflict ,
492
+ EntryStatus :: Conflict { .. } => Conflict ,
493
493
EntryStatus :: Change ( change) => match change {
494
494
Change :: Removed => Removed ,
495
495
Change :: Type { .. } => TypeChange ,
You can’t perform that action at this time.
0 commit comments