commit | 0a9a1c1ba5e5b14b583cf8ca5527ce4ac8618c8d | [log] [tgz] |
---|---|---|
author | Christopher Wiley <wiley@google.com> | Wed Jul 20 08:28:14 2016 -0700 |
committer | Christopher Wiley <wiley@google.com> | Wed Jul 20 08:28:14 2016 -0700 |
tree | f880fc1a7f9115c911a334566568d52c08724bbb | |
parent | abf1adc163152be05a685a4d3c8e0a0538a39c8d [diff] |
Fix unused variable build errors Change-Id: Ia4f5dc95110b75eefc41b2828990cdbbcb75c033
diff --git a/libs/binder/Binder.cpp b/libs/binder/Binder.cpp index c4d47ca..7ce2a31 100644 --- a/libs/binder/Binder.cpp +++ b/libs/binder/Binder.cpp
@@ -237,6 +237,10 @@ // XXX can't add virtuals until binaries are updated. //return shellCommand(in, out, err, args, resultReceiver); + (void)in; + (void)out; + (void)err; + if (resultReceiver != NULL) { resultReceiver->send(INVALID_OPERATION); }