We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f40ee34 + fe9bcb8 commit a60acd6Copy full SHA for a60acd6
src/init.c
@@ -586,7 +586,7 @@ _dispatch_syslog(const char *msg)
586
static inline void
587
_dispatch_vsyslog(const char *msg, va_list ap)
588
{
589
- vsyslog(LOG_NOTICE, msg, *ap_ptr);
+ vsyslog(LOG_NOTICE, msg, ap);
590
}
591
#endif // DISPATCH_USE_SIMPLE_ASL
592
src/shims/tsd.h
@@ -90,7 +90,7 @@ extern pthread_key_t dispatch_introspection_key;
90
#elif DISPATCH_PERF_MON
91
extern pthread_key_t dispatch_bcounter_key;
92
#endif
93
-exern pthread_key_t dispatch_pthread_root_queue_observer_hooks_key;
+extern pthread_key_t dispatch_pthread_root_queue_observer_hooks_key;
94
95
DISPATCH_TSD_INLINE
96
0 commit comments