Skip to content

Commit a60acd6

Browse files
committed
Merge pull request swiftlang#1 from dgrove-oss/typos
Typos
2 parents f40ee34 + fe9bcb8 commit a60acd6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ _dispatch_syslog(const char *msg)
586586
static inline void
587587
_dispatch_vsyslog(const char *msg, va_list ap)
588588
{
589-
vsyslog(LOG_NOTICE, msg, *ap_ptr);
589+
vsyslog(LOG_NOTICE, msg, ap);
590590
}
591591
#endif // DISPATCH_USE_SIMPLE_ASL
592592

src/shims/tsd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ extern pthread_key_t dispatch_introspection_key;
9090
#elif DISPATCH_PERF_MON
9191
extern pthread_key_t dispatch_bcounter_key;
9292
#endif
93-
exern pthread_key_t dispatch_pthread_root_queue_observer_hooks_key;
93+
extern pthread_key_t dispatch_pthread_root_queue_observer_hooks_key;
9494

9595
DISPATCH_TSD_INLINE
9696
static inline void

0 commit comments

Comments
 (0)