summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@respoke.io>2015-04-13 14:41:40 -0500
committerDavid M. Lee <dlee@digium.com>2015-04-13 14:44:44 -0500
commita573b77f781e2d6722c00bc3376afd809760bfc3 (patch)
tree0133fd0555bf2b8e7c338c2c84de9e5235b215d4 /utils
parent974d44fd8922ae77462bbdf8e598f03de13b888f (diff)
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
Diffstat (limited to 'utils')
-rw-r--r--utils/extconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/extconf.c b/utils/extconf.c
index 7ddbb67f9..53347b41a 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -503,7 +503,7 @@ typedef pthread_cond_t ast_cond_t;
static void __attribute__((constructor)) init_##mutex(void) \
{ \
ast_mutex_init(&mutex); \
-} \
+}
#else /* !AST_MUTEX_INIT_W_CONSTRUCTORS */
/* By default, use static initialization of mutexes. */
#define __AST_MUTEX_DEFINE(scope, mutex) \