Skip to content

Commit 4706520

Browse files
committed
Fixed conflicting method signature.
1 parent d44acc0 commit 4706520

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/queue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7303,7 +7303,7 @@ gettid(void)
73037303
static void (*_dispatch_thread_detach_callback)(void);
73047304

73057305
void
7306-
_dispatch_install_thread_detach_callback(dispatch_function_t cb)
7306+
_dispatch_install_thread_detach_callback(void (*cb)(void))
73077307
{
73087308
if (os_atomic_xchg(&_dispatch_thread_detach_callback, cb, relaxed)) {
73097309
DISPATCH_CLIENT_CRASH(0, "Installing a thread detach callback twice");

0 commit comments

Comments
 (0)