Fix build
Fix format error.
Change-Id: Ic793c52f46d645bf88ea6b28d5b4fa1bdb315a20
diff --git a/runtime/debugger.cc b/runtime/debugger.cc
index e66c370..edf54be 100644
--- a/runtime/debugger.cc
+++ b/runtime/debugger.cc
@@ -2777,7 +2777,7 @@
CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
req.instrumentation_event);
if (*counter == 0) {
- VLOG(jdwp) << StringPrintf("Queue request #%d to start listening to instrumentation event 0x%x",
+ VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
deoptimization_requests_.size(), req.instrumentation_event);
deoptimization_requests_.push_back(req);
}
@@ -2791,7 +2791,7 @@
req.instrumentation_event);
*counter = *counter - 1;
if (*counter == 0) {
- VLOG(jdwp) << StringPrintf("Queue request #%d to stop listening to instrumentation event 0x%x",
+ VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
deoptimization_requests_.size(), req.instrumentation_event);
deoptimization_requests_.push_back(req);
}