From e540034f220b763b1c2e072d829b18262254b353 Mon Sep 17 00:00:00 2001 From: "David M. Lee" Date: Mon, 13 Apr 2015 14:41:40 -0500 Subject: [PATCH] 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 --- utils/extconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/extconf.c b/utils/extconf.c index 2b1bc0ce49..bd2cc9a9b4 100644 --- a/utils/extconf.c +++ b/utils/extconf.c @@ -487,7 +487,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) \ -- 2.47.2