From 24ba3af7e5d7cd137a0f0b4151d2fce6db760eb8 Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Tue, 12 Sep 2017 22:22:43 +0300 Subject: [PATCH] Fix build --- runtime/src/main/cpp/Exceptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());