summaryrefslogtreecommitdiff
path: root/libs/binder/IPCThreadState.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r--libs/binder/IPCThreadState.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp
index 8b65d630ec..c3bbdbadaa 100644
--- a/libs/binder/IPCThreadState.cpp
+++ b/libs/binder/IPCThreadState.cpp
@@ -621,9 +621,8 @@ void IPCThreadState::blockUntilThreadAvailable()
if (cur < max) {
return true;
}
- ALOGW("Waiting for thread to be free. mExecutingThreadsCount=%" PRId64
- " mMaxThreads=%" PRId64 "\n",
- cur, max);
+ ALOGW("Waiting for thread to be free. mExecutingThreadsCount=%zu mMaxThreads=%zu\n", cur,
+ max);
return false;
});
mProcess->mOnThreadAvailableWaiting--;