diff options
author | 2024-06-18 12:21:18 -0700 | |
---|---|---|
committer | 2024-06-18 12:22:08 -0700 | |
commit | 99490acc7a6139a80fecc2029aeb0eb388c1917c (patch) | |
tree | cbae76367a6e0094cc5e1947804176eb5fe4fba9 /libs/binder/IPCThreadState.cpp | |
parent | 1734fc05cd9a0e4b69bd1488224ba47c7beb4da4 (diff) |
binder: fix printf warning
introduced in https://r.android.com/3107366
Bug: 333946800
Test: m
Change-Id: I432c5364b5a444d5b5c4c56b6d7a80f0303609a6
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r-- | libs/binder/IPCThreadState.cpp | 5 |
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--; |