Skip to content

Commit 7dc7e59

Browse files
committed
pp: prefix race address with 0x
1 parent 543fe08 commit 7dc7e59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/ui.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func (p *Palette) GoroutineHeader(g *stack.Goroutine, pf pathFormat, multipleGor
194194
if g.RaceWrite {
195195
r = "write"
196196
}
197-
extra += fmt.Sprintf("%s%s Race %s @ %08x", p.EOLReset, p.Race, r, g.RaceAddr)
197+
extra += fmt.Sprintf("%s%s Race %s @ 0x%08x", p.EOLReset, p.Race, r, g.RaceAddr)
198198
}
199199
return fmt.Sprintf(
200200
"%s%d: %s%s%s\n",

0 commit comments

Comments
 (0)