summaryrefslogtreecommitdiff
path: root/funcs/func_strings.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-02-10 21:24:10 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-02-10 21:24:10 +0000
commit47f3850a1e5294e5f49a0b2580178baf9ae48137 (patch)
tree35de7732db40ddcf0f7e08212da8cf1b297f9a6e /funcs/func_strings.c
parent00b5520a6f0cd2ae44b2f3bbfea406e799b80917 (diff)
Fussy compiler on another machine...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@246204 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/func_strings.c')
-rw-r--r--funcs/func_strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_strings.c b/funcs/func_strings.c
index 5b319c2eb..eb78632de 100644
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -638,7 +638,7 @@ static int filter(struct ast_channel *chan, const char *cmd, char *parse, char *
ast_debug(4, "c1=%d, c2=%d\n", c1, c2);
} else {
ac = (unsigned char) c1;
- ast_debug(4, "c1=%d, consumed=%d, args.allowed=%s\n", c1, consumed, args.allowed - consumed);
+ ast_debug(4, "c1=%d, consumed=%d, args.allowed=%s\n", c1, (int) consumed, args.allowed - consumed);
bitfield[ac / 32] |= 1 << (ac % 32);
}
}