From 6f4f3ab36c5ed1df84eb3a9f7475f0ac42952f58 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 5 Feb 2014 17:42:44 -0800 Subject: 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 --- libs/binder/ProcessState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/binder/ProcessState.cpp') 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& object) setContextObject(object, String16("default")); } -sp ProcessState::getContextObject(const sp& caller) +sp ProcessState::getContextObject(const sp& /*caller*/) { return getStrongProxyForHandle(0); } -- cgit v1.2.3-59-g8ed1b