aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-10 21:24:10 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-10 21:24:10 +0000
commitee564ed2691d32afdfe28dc1b28c9b9df51a548e (patch)
tree35de7732db40ddcf0f7e08212da8cf1b297f9a6e /funcs
parent55ae987126ce9dfea30d6ba226bf876ff435a926 (diff)
Fussy compiler on another machine...
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@246204 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-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);
}
}