Skip to content

Commit

Permalink
Update diff.go
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Dec 24, 2024
1 parent d294086 commit 416808f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/commands/macho/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ func DiffFirmwares(oldIPSW, newIPSW string, conf *DiffConfig) (*MachoDiff, error
prev[path] = GenerateDiffInfo(m, conf)
return nil
}); err != nil {
return nil, fmt.Errorf("failed to parse machos in 'Old' IPSW: %v", err)
return nil, fmt.Errorf("failed to parse firmwares in 'Old' IPSW: %v", err)
}

/* NEXT IPSW */
Expand All @@ -275,7 +275,7 @@ func DiffFirmwares(oldIPSW, newIPSW string, conf *DiffConfig) (*MachoDiff, error
next[path] = GenerateDiffInfo(m, conf)
return nil
}); err != nil {
return nil, fmt.Errorf("failed to parse machos in 'Old' IPSW: %v", err)
return nil, fmt.Errorf("failed to parse firmwares in 'Old' IPSW: %v", err)
}

if err := diff.Generate(prev, next, conf); err != nil {
Expand Down

0 comments on commit 416808f

Please sign in to comment.