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:
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;