mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-23 13:09:00 +00:00
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:
@@ -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)
|
||||||
|
Reference in New Issue
Block a user