diff --git a/runtime/src/main/cpp/Exceptions.cpp b/runtime/src/main/cpp/Exceptions.cpp index c904cd11c09..5c336f76dee 100644 --- a/runtime/src/main/cpp/Exceptions.cpp +++ b/runtime/src/main/cpp/Exceptions.cpp @@ -136,7 +136,7 @@ OBJ_GETTER0(GetCurrentStackTrace) { int depth = 0; _Unwind_Backtrace(depthCountCallback, &depth); if (depth < kSkipFrames) - return AllocArrayInstance(theArrayTypeInfo, 0, OBJ_RESULT) + return AllocArrayInstance(theArrayTypeInfo, 0, OBJ_RESULT); Backtrace result(depth, kSkipFrames); _Unwind_Backtrace(unwindCallback, &result); RETURN_OBJ(result.obj());