Commit 34a660ec by Andreas Tobler

Fix typo in the last commit. Sorry.

From-SVN: r113802
parent eb55476b
...@@ -243,7 +243,7 @@ _Jv_StackTrace::FillInFrameInfo (_Jv_StackFrame *frame) ...@@ -243,7 +243,7 @@ _Jv_StackTrace::FillInFrameInfo (_Jv_StackFrame *frame)
// Find method in class // Find method in class
for (int j = 0; j < klass->method_count; j++) 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) if (wncode == frame->start_ip)
{ {
meth = &klass->methods[j]; meth = &klass->methods[j];
......
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