Fix typo in the last commit. Sorry.

From-SVN: r113802
This commit is contained in:
Andreas Tobler 2006-05-15 23:38:25 +02:00
parent eb55476b2e
commit 34a660ec3d

View File

@ -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];