diff options
author | Andreas Gampe <agampe@google.com> | 2015-01-08 11:32:22 -0800 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-01-08 11:32:22 -0800 |
commit | 9387c72720767b65b2ef27d6e922373d9ddc8d6c (patch) | |
tree | 31def0a395d475b736ac607ca071e1cf65ec48bf | |
parent | 553727e466942a10e11ee39dcb67e3f9562b471e (diff) | |
download | art-9387c72720767b65b2ef27d6e922373d9ddc8d6c.tar.gz art-9387c72720767b65b2ef27d6e922373d9ddc8d6c.tar.bz2 art-9387c72720767b65b2ef27d6e922373d9ddc8d6c.zip |
ART: Fix Mac build
Fix Mac build after change-id Id2710d2fd44b7c3b3335973a9288979a5793638b.
Bug: 18933933
Change-Id: Ib0bb5082908d5dff33ef8f8a69d82c07406c176d
-rw-r--r-- | runtime/utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/utils.cc b/runtime/utils.cc index 7234ec095..dd0bdbbe7 100644 --- a/runtime/utils.cc +++ b/runtime/utils.cc @@ -1177,7 +1177,7 @@ void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix, os << "\n"; } #else - UNUSED(os, tid, prefix, current_method); + UNUSED(os, tid, prefix, current_method, ucontext_ptr); #endif } |