diff options
author | 2014-02-05 17:42:44 -0800 | |
---|---|---|
committer | 2014-02-05 17:51:10 -0800 | |
commit | 6f4f3ab36c5ed1df84eb3a9f7475f0ac42952f58 (patch) | |
tree | 9ab9e8430032dbe04e7f8e70fcea0f5872fb9ae2 /libs/binder/ProcessState.cpp | |
parent | 055dac1b54af46a0608b32e83fcae45e75a4a8f0 (diff) |
binder: fix all warnings
Fix warnings related to casting pointers to ints, using %d or %ld to
print size_t/ssize_t, and unused parameters.
Change-Id: I7a13ba83d402952989c1f795cd9e880a95b98d9e
Diffstat (limited to 'libs/binder/ProcessState.cpp')
-rw-r--r-- | libs/binder/ProcessState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp index c1e49bc8f6..01639061ee 100644 --- a/libs/binder/ProcessState.cpp +++ b/libs/binder/ProcessState.cpp @@ -86,7 +86,7 @@ void ProcessState::setContextObject(const sp<IBinder>& object) setContextObject(object, String16("default")); } -sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& caller) +sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& /*caller*/) { return getStrongProxyForHandle(0); } |