diff options
| author | 2014-02-06 02:59:37 +0000 | |
|---|---|---|
| committer | 2014-02-06 02:59:37 +0000 | |
| commit | 2b957503b77c938e0698ffa8904e20c38c408d81 (patch) | |
| tree | d4145e2bc6d6d18833c88f84693fb0bc426a4556 /libs/binder/BpBinder.cpp | |
| parent | bdab63e06b6bacb60991420891cb06fe3dc5654f (diff) | |
| parent | 74be0f7be35e7b40a322fa9a407cb49265333a0b (diff) | |
am 74be0f7b: Merge "binder: fix all warnings"
* commit '74be0f7be35e7b40a322fa9a407cb49265333a0b':
binder: fix all warnings
Diffstat (limited to 'libs/binder/BpBinder.cpp')
| -rw-r--r-- | libs/binder/BpBinder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/BpBinder.cpp b/libs/binder/BpBinder.cpp index 47a62db41d..1bad67af23 100644 --- a/libs/binder/BpBinder.cpp +++ b/libs/binder/BpBinder.cpp @@ -343,7 +343,7 @@ void BpBinder::onFirstRef() if (ipc) ipc->incStrongHandle(mHandle); } -void BpBinder::onLastStrongRef(const void* id) +void BpBinder::onLastStrongRef(const void* /*id*/) { ALOGV("onLastStrongRef BpBinder %p handle %d\n", this, mHandle); IF_ALOGV() { @@ -353,7 +353,7 @@ void BpBinder::onLastStrongRef(const void* id) if (ipc) ipc->decStrongHandle(mHandle); } -bool BpBinder::onIncStrongAttempted(uint32_t flags, const void* id) +bool BpBinder::onIncStrongAttempted(uint32_t /*flags*/, const void* /*id*/) { ALOGV("onIncStrongAttempted BpBinder %p handle %d\n", this, mHandle); IPCThreadState* ipc = IPCThreadState::self(); |