commit | 99490acc7a6139a80fecc2029aeb0eb388c1917c | [log] [tgz] |
---|---|---|
author | Frederick Mayle <fmayle@google.com> | Tue Jun 18 12:21:18 2024 -0700 |
committer | Frederick Mayle <fmayle@google.com> | Tue Jun 18 12:22:08 2024 -0700 |
tree | cbae76367a6e0094cc5e1947804176eb5fe4fba9 | |
parent | 1734fc05cd9a0e4b69bd1488224ba47c7beb4da4 [diff] [blame] |
binder: fix printf warning introduced in https://r.android.com/3107366 Bug: 333946800 Test: m Change-Id: I432c5364b5a444d5b5c4c56b6d7a80f0303609a6
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 8b65d63..c3bbdba 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp
@@ -621,9 +621,8 @@ 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--;