resolve some compiler warnings ...

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39684 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2006-08-14 03:34:16 +00:00
parent 26731ac99f
commit bd5ce7362d

View File

@@ -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)
{
_macro_exec(chan, data, 0);
return _macro_exec(chan, data, 0);
}
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)