[svn-commits] tilghman: trunk r246204 - /trunk/funcs/func_strings.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Feb 10 15:24:13 CST 2010


Author: tilghman
Date: Wed Feb 10 15:24:10 2010
New Revision: 246204

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=246204
Log:
Fussy compiler on another machine...

Modified:
    trunk/funcs/func_strings.c

Modified: trunk/funcs/func_strings.c
URL: http://svnview.digium.com/svn/asterisk/trunk/funcs/func_strings.c?view=diff&rev=246204&r1=246203&r2=246204
==============================================================================
--- trunk/funcs/func_strings.c (original)
+++ trunk/funcs/func_strings.c Wed Feb 10 15:24:10 2010
@@ -638,7 +638,7 @@
 			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);
 		}
 	}




More information about the svn-commits mailing list