]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
resolve some compiler warnings ...
authorRussell Bryant <russell@russellbryant.com>
Mon, 14 Aug 2006 03:34:16 +0000 (03:34 +0000)
committerRussell Bryant <russell@russellbryant.com>
Mon, 14 Aug 2006 03:34:16 +0000 (03:34 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39684 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_macro.c

index a937621c4859f3ada95a095d7103986b1e8a0888..8b46bf0f42c79aeffd0c8b5951edcd2701fdf19c 100644 (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)