[asterisk-commits] kpfleming: trunk r44973 -
	/trunk/channels/chan_sip.c
    asterisk-commits at lists.digium.com 
    asterisk-commits at lists.digium.com
       
    Thu Oct 12 12:16:16 MST 2006
    
    
  
Author: kpfleming
Date: Thu Oct 12 14:16:16 2006
New Revision: 44973
URL: http://svn.digium.com/view/asterisk?rev=44973&view=rev
Log:
eliminate compiler warning
Modified:
    trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=44973&r1=44972&r2=44973&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Thu Oct 12 14:16:16 2006
@@ -4401,7 +4401,7 @@
 		else if (*c == '\n') { /* end of this line */
 			*c = '\0';
 			if (sipdebug && option_debug > 3)
-				ast_log(LOG_DEBUG, "%7s %2d [%3d]: %s\n",
+				ast_log(LOG_DEBUG, "%7s %2d [%3zd]: %s\n",
 					req->headers < 0 ? "Header" : "Body",
 					i, strlen(dst[i]), dst[i]);
 			if (ast_strlen_zero(dst[i]) && req->headers < 0) {
    
    
More information about the asterisk-commits
mailing list