summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/AudioFlinger.cpp
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2014-11-17 18:19:15 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-17 18:19:15 +0000
commite78a27ca9c701aa996eee0e47fa26dd69d80ffcf (patch)
tree670ed8d454145e88076adef380a802b9788d20a8 /services/audioflinger/AudioFlinger.cpp
parentbb0cf4d079290c8885e11c310c531ece23323d61 (diff)
parent9b77083e582a8b6088ac6a2cb4151dfbdd324557 (diff)
downloadframeworks_av-e78a27ca9c701aa996eee0e47fa26dd69d80ffcf.zip
frameworks_av-e78a27ca9c701aa996eee0e47fa26dd69d80ffcf.tar.gz
frameworks_av-e78a27ca9c701aa996eee0e47fa26dd69d80ffcf.tar.bz2
am 9b77083e: Merge "Update calls to IInterface::asBinder()"
* commit '9b77083e582a8b6088ac6a2cb4151dfbdd324557': Update calls to IInterface::asBinder()
Diffstat (limited to 'services/audioflinger/AudioFlinger.cpp')
-rw-r--r--services/audioflinger/AudioFlinger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp
index e48af20..c571cf5 100644
--- a/services/audioflinger/AudioFlinger.cpp
+++ b/services/audioflinger/AudioFlinger.cpp
@@ -1187,7 +1187,7 @@ void AudioFlinger::registerClient(const sp<IAudioFlingerClient>& client)
mNotificationClients.add(pid, notificationClient);
- sp<IBinder> binder = client->asBinder();
+ sp<IBinder> binder = IInterface::asBinder(client);
binder->linkToDeath(notificationClient);
clientAdded = true;
}