Преглед изворни кода

ios: fix compilation warning

master
Saúl Ibarra Corretgé пре 6 година
родитељ
комит
58887577b4
1 измењених фајлова са 4 додато и 3 уклоњено
  1. 4
    3
      ios/sdk/src/AudioMode.m

+ 4
- 3
ios/sdk/src/AudioMode.m Прегледај датотеку

1
 /*
1
 /*
2
- * Copyright @ 2017-present Atlassian Pty Ltd
2
+ * Copyright @ 2018-present 8x8, Inc.
3
+ * Copyright @ 2017-2018 Atlassian Pty Ltd
3
  *
4
  *
4
  * Licensed under the Apache License, Version 2.0 (the "License");
5
  * Licensed under the Apache License, Version 2.0 (the "License");
5
  * you may not use this file except in compliance with the License.
6
  * you may not use this file except in compliance with the License.
59
         dispatch_queue_attr_t attributes =
60
         dispatch_queue_attr_t attributes =
60
         dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_SERIAL,
61
         dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_SERIAL,
61
                                                 QOS_CLASS_USER_INITIATED, -1);
62
                                                 QOS_CLASS_USER_INITIATED, -1);
62
-        _workerQueue = dispatch_queue_create("WebRTCModule.queue", attributes);
63
+        _workerQueue = dispatch_queue_create("AudioMode.queue", attributes);
63
     }
64
     }
64
     return self;
65
     return self;
65
 }
66
 }
81
         // needed. This notification is posted on a secondary thread, so make
82
         // needed. This notification is posted on a secondary thread, so make
82
         // sure we switch to our worker thread.
83
         // sure we switch to our worker thread.
83
         dispatch_async(_workerQueue, ^{
84
         dispatch_async(_workerQueue, ^{
84
-            [self setCategory:_category mode:_mode error:nil];
85
+            [self setCategory:self->_category mode:self->_mode error:nil];
85
         });
86
         });
86
         break;
87
         break;
87
     }
88
     }

Loading…
Откажи
Сачувај