summaryrefslogtreecommitdiff
path: root/pbx/pbx_loopback.c
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2012-04-04 18:08:28 +0000
committerJonathan Rose <jrose@digium.com>2012-04-04 18:08:28 +0000
commite96a59acfdbd655045ad8d8292cde674d2236645 (patch)
tree0adb9e4b51d96b070321db626eea3fd506d04079 /pbx/pbx_loopback.c
parent97b2fa8de18777eb31f20e86dd1c31ffa3a0f17b (diff)
Replace GNU old-style field designator extensions to fix clang warnings
(issue ASTERISK-19540) Reported by: Makoto Dei Patches: clang-gnu-designator.patch uploaded by Makoto Dei (license 5027) ........ Also add from the patch the portion in res_fax_spandsp that didn't apply to 1.8 Merged revisions 361142 from http://svn.asterisk.org/svn/asterisk/branches/1.8 (closes issue ASTERISK-19540) ........ Merged revisions 361143 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@361155 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/pbx_loopback.c')
-rw-r--r--pbx/pbx_loopback.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/pbx/pbx_loopback.c b/pbx/pbx_loopback.c
index 915a0cb10..5f3561343 100644
--- a/pbx/pbx_loopback.c
+++ b/pbx/pbx_loopback.c
@@ -163,12 +163,12 @@ static int loopback_matchmore(struct ast_channel *chan, const char *context, con
static struct ast_switch loopback_switch =
{
- name: "Loopback",
- description: "Loopback Dialplan Switch",
- exists: loopback_exists,
- canmatch: loopback_canmatch,
- exec: loopback_exec,
- matchmore: loopback_matchmore,
+ .name = "Loopback",
+ .description = "Loopback Dialplan Switch",
+ .exists = loopback_exists,
+ .canmatch = loopback_canmatch,
+ .exec = loopback_exec,
+ .matchmore = loopback_matchmore,
};
static int unload_module(void)