commit | 06b46062d2f8bc82ca3061a23d197734ae51918b | [log] [tgz] |
---|---|---|
author | Marco Nelissen <marcone@google.com> | Fri Nov 14 07:58:25 2014 -0800 |
committer | Marco Nelissen <marcone@google.com> | Fri Nov 14 14:01:03 2014 -0800 |
tree | 3aee1330c3d65579643e50d105da35919ddc295f | |
parent | e5a9eb684921b75919b1a7fee97259b0ca48bd47 [diff] [blame] |
Update calls to IInterface::asBinder() to use the new static version. Change-Id: I89a5988a0ac694ffc04d88cf939e8455bf925d4c
diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp index 115b60c..a17a49e 100644 --- a/services/audioflinger/AudioFlinger.cpp +++ b/services/audioflinger/AudioFlinger.cpp
@@ -1191,7 +1191,7 @@ mNotificationClients.add(pid, notificationClient); - sp<IBinder> binder = client->asBinder(); + sp<IBinder> binder = IInterface::asBinder(client); binder->linkToDeath(notificationClient); clientAdded = true; }