]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 246204 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Wed, 10 Feb 2010 21:28:47 +0000 (21:28 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Wed, 10 Feb 2010 21:28:47 +0000 (21:28 +0000)
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: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@246207 65c4cc65-6c06-0410-ace0-fbb531ad65f3

funcs/func_strings.c

index e242abddc9f99990123d9d2354cf9592e3b9f917..823a3c103e43ed61b551642aec008b190c3aee4c 100644 (file)
@@ -478,7 +478,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);
                }
        }