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 2, 2024
1 parent 00b2be9 commit 8599097
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 @@ -2076,7 +2076,7 @@ func (n *Note) String() string {
}
}
for _, img := range imgs {
note += fmt.Sprintf("%s%#x: %s\n", strings.Repeat(" ", 9), img.Entry.LoadAddress, 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 8599097

Please sign in to comment.