Fix typo in the last commit. Sorry.
From-SVN: r113802
This commit is contained in:
parent
eb55476b2e
commit
34a660ec3d
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ _Jv_StackTrace::FillInFrameInfo (_Jv_StackFrame *frame)
|
|||
// Find method in class
|
||||
for (int j = 0; j < klass->method_count; j++)
|
||||
{
|
||||
void *wncode UNWRAP_FUNCTION_DESCRIPTOR (klass->methods[j].ncode);
|
||||
void *wncode = UNWRAP_FUNCTION_DESCRIPTOR (klass->methods[j].ncode);
|
||||
if (wncode == frame->start_ip)
|
||||
{
|
||||
meth = &klass->methods[j];
|
||||
|
|
Loading…
Add table
Reference in a new issue