summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/Threads.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-02-07 16:46:08 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-02-07 16:46:08 +0000
commit010c4c8ec50eb04ece15f792c508a3b869749310 (patch)
tree3527006df4e3bca1cb293ef49a3eb22efebae48e /services/audioflinger/Threads.h
parent85f06f640d364490dbf133f55e9d62d7c7c0db11 (diff)
parent49debee5bdddd7a1e0742a3ab66d4630bbe25ca2 (diff)
downloadframeworks_av-010c4c8ec50eb04ece15f792c508a3b869749310.zip
frameworks_av-010c4c8ec50eb04ece15f792c508a3b869749310.tar.gz
frameworks_av-010c4c8ec50eb04ece15f792c508a3b869749310.tar.bz2
Merge "Fix IoConfigEvent constructor initializer list"
Diffstat (limited to 'services/audioflinger/Threads.h')
-rw-r--r--services/audioflinger/Threads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/Threads.h b/services/audioflinger/Threads.h
index 1745ea1..4700c0a 100644
--- a/services/audioflinger/Threads.h
+++ b/services/audioflinger/Threads.h
@@ -65,7 +65,7 @@ public:
class IoConfigEvent : public ConfigEvent {
public:
IoConfigEvent(int event, int param) :
- ConfigEvent(CFG_EVENT_IO), mEvent(event), mParam(event) {}
+ ConfigEvent(CFG_EVENT_IO), mEvent(event), mParam(param) {}
virtual ~IoConfigEvent() {}
int event() const { return mEvent; }