resolve some compiler warnings ...

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39684 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Russell Bryant 19 years ago
parent 26731ac99f
commit bd5ce7362d

@ -340,12 +340,12 @@ static int _macro_exec(struct ast_channel *chan, void *data, int exclusive)
static int macro_exec(struct ast_channel *chan, void *data) static int macro_exec(struct ast_channel *chan, void *data)
{ {
_macro_exec(chan, data, 0); return _macro_exec(chan, data, 0);
} }
static int macroexclusive_exec(struct ast_channel *chan, void *data) static int macroexclusive_exec(struct ast_channel *chan, void *data)
{ {
_macro_exec(chan, data, 1); return _macro_exec(chan, data, 1);
} }
static int macroif_exec(struct ast_channel *chan, void *data) static int macroif_exec(struct ast_channel *chan, void *data)

Loading…
Cancel
Save