Mac build fixes I missed in my previous patch.
Change-Id: Ibf63e77b9e18374fa802b508c9e489105a88e017
diff --git a/src/monitor.cc b/src/monitor.cc
index b641160..662e199 100644
--- a/src/monitor.cc
+++ b/src/monitor.cc
@@ -194,7 +194,7 @@
if (!lock_.TryLock()) {
uint32_t wait_threshold = lock_profiling_threshold_;
const Method* current_locking_method = NULL;
- uint32_t current_locking_pc = 0;
+ uintptr_t current_locking_pc = 0;
{
ScopedThreadStateChange tsc(self, Thread::kBlocked);
if (wait_threshold != 0) {
@@ -368,7 +368,7 @@
owner_ = NULL;
const Method* savedMethod = locking_method_;
locking_method_ = NULL;
- uint32_t savedPc = locking_pc_;
+ uintptr_t savedPc = locking_pc_;
locking_pc_ = 0;
/*