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
This commit is contained in:
Jonathan Rose
2012-04-04 18:08:28 +00:00
parent 97b2fa8de1
commit e96a59acfd
10 changed files with 39 additions and 39 deletions

View File

@@ -388,12 +388,12 @@ static int realtime_matchmore(struct ast_channel *chan, const char *context, con
static struct ast_switch realtime_switch =
{
name: "Realtime",
description: "Realtime Dialplan Switch",
exists: realtime_exists,
canmatch: realtime_canmatch,
exec: realtime_exec,
matchmore: realtime_matchmore,
.name = "Realtime",
.description = "Realtime Dialplan Switch",
.exists = realtime_exists,
.canmatch = realtime_canmatch,
.exec = realtime_exec,
.matchmore = realtime_matchmore,
};
static int unload_module(void)