[asterisk-dev] Change in asterisk[13]: Fixing extconf compile
Mark Michelson (Code Review)
asteriskteam at digium.com
Mon Apr 13 15:08:21 CDT 2015
Mark Michelson has submitted this change and it was merged.
Change subject: Fixing extconf compile
......................................................................
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
---
M utils/extconf.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Mark Michelson: Looks good to me, approved; Verified
Jared K. Smith: Looks good to me, but someone else must approve
diff --git a/utils/extconf.c b/utils/extconf.c
index 89cf6dd..7989bcd 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -502,7 +502,7 @@
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) \
--
To view, visit https://gerrit.asterisk.org/89
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I60e5fa58c9a5b248bde23aaada79ff663f87a2a1
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-Owner: David M. Lee <dlee at digium.com>
Gerrit-Reviewer: Jared K. Smith <jaredsmith at jaredsmith.net>
Gerrit-Reviewer: Mark Michelson <mmichelson at digium.com>
More information about the asterisk-dev
mailing list