Skip to content

Commit

Permalink
Update cmds.go
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Jun 4, 2024
1 parent 98f43c2 commit d5348c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmds.go
Original file line number Diff line number Diff line change
Expand Up @@ -2085,7 +2085,7 @@ func (n *Note) String() string {
}
}
for _, img := range imgs {
note += fmt.Sprintf("%s%#x: uuid=%s %s\n", strings.Repeat(" ", 9), img.Entry.LoadAddress, img.Entry.UUID, img.Name)
note += fmt.Sprintf("%s%#x: uuid=%s '%s'\n", strings.Repeat(" ", 9), img.Entry.LoadAddress, img.Entry.UUID, img.Name)
for _, seg := range img.Segments {
note += fmt.Sprintf("%s%#x %s\n", strings.Repeat(" ", 11), seg.VmAddr, string(bytes.Trim(seg.Name[:], "\x00")))
}
Expand Down

0 comments on commit d5348c2

Please sign in to comment.