summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-08-14 03:34:16 +0000
committerRussell Bryant <russell@russellbryant.com>2006-08-14 03:34:16 +0000
commitbd5ce7362df32b03266bb62ac73cdfb135ac6532 (patch)
tree36074978888727fbaee97ada586b33120a6819c4 /apps
parent26731ac99f39ef29c49690a4445ac9aee737a057 (diff)
resolve some compiler warnings ...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39684 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_macro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_macro.c b/apps/app_macro.c
index a937621c4..8b46bf0f4 100644
--- a/apps/app_macro.c
+++ b/apps/app_macro.c
@@ -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)