Skip to content

Commit

Permalink
fix: ipsw kernel ctfdump FUNCTION dump output fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed May 30, 2024
1 parent e586916 commit 48a0e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ctf/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func (f *Function) Dump() string {
for _, a := range f.args {
sargs = append(sargs, strconv.Itoa(int(a)))
}
fdump = fmt.Sprintf("%s)", strings.Join(sargs, ","))
fdump += fmt.Sprintf("%s)", strings.Join(sargs, ","))
return fdump
}
func (f *Function) MarshalJSON() ([]byte, error) {
Expand Down

0 comments on commit 48a0e4d

Please sign in to comment.