From 34a660ec3d3b402a7e1794e4408bc87afd77aba6 Mon Sep 17 00:00:00 2001 From: Andreas Tobler Date: Mon, 15 May 2006 23:38:25 +0200 Subject: [PATCH] Fix typo in the last commit. Sorry. From-SVN: r113802 --- libjava/stacktrace.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libjava/stacktrace.cc b/libjava/stacktrace.cc index cc29be16e29..8b4618172fd 100644 --- a/libjava/stacktrace.cc +++ b/libjava/stacktrace.cc @@ -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];