mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
Fixing extconf compile
During the mass code deletion for clang support, a stray backslash was left behind that was causing utils to fail to compile. Change-Id: I60e5fa58c9a5b248bde23aaada79ff663f87a2a1
This commit is contained in:
committed by
David M. Lee
parent
974d44fd89
commit
a573b77f78
@@ -503,7 +503,7 @@ typedef pthread_cond_t ast_cond_t;
|
|||||||
static void __attribute__((constructor)) init_##mutex(void) \
|
static void __attribute__((constructor)) init_##mutex(void) \
|
||||||
{ \
|
{ \
|
||||||
ast_mutex_init(&mutex); \
|
ast_mutex_init(&mutex); \
|
||||||
} \
|
}
|
||||||
#else /* !AST_MUTEX_INIT_W_CONSTRUCTORS */
|
#else /* !AST_MUTEX_INIT_W_CONSTRUCTORS */
|
||||||
/* By default, use static initialization of mutexes. */
|
/* By default, use static initialization of mutexes. */
|
||||||
#define __AST_MUTEX_DEFINE(scope, mutex) \
|
#define __AST_MUTEX_DEFINE(scope, mutex) \
|
||||||
|
Reference in New Issue
Block a user