Commit 5a008ace authored by Keith Randall's avatar Keith Randall

runtime: cast to uintptr to match %p formatter.

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/121920043
parent 58241bfd
...@@ -97,7 +97,7 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp) ...@@ -97,7 +97,7 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp)
runtime·panicking = 1; runtime·panicking = 1;
runtime·printf("Exception %x %p %p %p\n", info->ExceptionCode, runtime·printf("Exception %x %p %p %p\n", info->ExceptionCode,
info->ExceptionInformation[0], info->ExceptionInformation[1], r->Eip); (uintptr)info->ExceptionInformation[0], (uintptr)info->ExceptionInformation[1], (uintptr)r->Eip);
runtime·printf("PC=%x\n", r->Eip); runtime·printf("PC=%x\n", r->Eip);
if(g->m->lockedg != nil && g->m->ncgo > 0 && gp == g->m->g0) { if(g->m->lockedg != nil && g->m->ncgo > 0 && gp == g->m->g0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment