We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc57fa commit d47e9f3Copy full SHA for d47e9f3
kotlinx-coroutines-core/nativeDarwin/src/Dispatchers.kt
@@ -20,7 +20,7 @@ internal actual fun createDefaultDispatcher(): CoroutineDispatcher = DarwinGloba
20
private object DarwinGlobalQueueDispatcher : CoroutineDispatcher() {
21
override fun dispatch(context: CoroutineContext, block: Runnable) {
22
autoreleasepool {
23
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT.convert(), 0)) {
+ dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT.convert(), 0u)) {
24
block.run()
25
}
26
0 commit comments