aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-10 21:27:35 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-10 21:27:35 +0000
commit40e5e0baccda0e454c827e0c6ab4b5762a92b49b (patch)
treec39becc239d6d847a8431db28f22ae70003dea31 /funcs
parent96c8d883cd317dfe255dca28df63e93188a3e2d6 (diff)
Merged revisions 246204 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r246204 | tilghman | 2010-02-10 15:24:10 -0600 (Wed, 10 Feb 2010) | 2 lines Fussy compiler on another machine... ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@246205 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 82b025209..a68cf566e 100644
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -134,7 +134,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);
}
}