This commit is contained in:
Glenn Maynard
2004-03-19 21:37:31 +00:00
parent 4e5d430926
commit b44cd86843
3 changed files with 12 additions and 12 deletions
@@ -176,8 +176,8 @@ bool GetThreadBacktraceContext( int ThreadID, BacktraceContext *ctx )
return false;
ctx->pid = ThreadID;
ctx->eip = regs.eip;
ctx->ebp = regs.ebp;
ctx->eip = (void *) regs.eip;
ctx->ebp = (void *) regs.ebp;
return true;
}