Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2013-02-07 20:22:46 +0400
committerMikkel Krautz <mikkel@krautz.dk>2013-02-07 20:22:46 +0400
commita5cdcfa810f531b7bf9ed54ed807c1b8a92bf7da (patch)
treebf03f6d3a9b66310831da41f417c4cd4c791b089 /src
parent97d6b0db462c5022ab05a9c2164776ec6e2e0b60 (diff)
MKAudioOutputSidetone: assign to self in init.
Diffstat (limited to 'src')
-rw-r--r--src/MKAudioOutputSidetone.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MKAudioOutputSidetone.m b/src/MKAudioOutputSidetone.m
index 3eae68f..597e1e9 100644
--- a/src/MKAudioOutputSidetone.m
+++ b/src/MKAudioOutputSidetone.m
@@ -19,7 +19,7 @@
@implementation MKAudioOutputSidetone
- (id) initWithSettings:(MKAudioSettings *)settings {
- if (([super init])) {
+ if ((self = [super init])) {
memcpy(&_settings, settings, sizeof(MKAudioSettings));
_frames = [[NSMutableArray alloc] init];
_filled = 0;