[asterisk-commits] kmoore: branch 12 r418066 -	/branches/12/main/http.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Sun Jul  6 20:00:58 CDT 2014
    
    
  
Author: kmoore
Date: Sun Jul  6 20:00:46 2014
New Revision: 418066
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=418066
Log:
HTTP: Fix build for gcc 4.10
Modified:
    branches/12/main/http.c
Modified: branches/12/main/http.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/main/http.c?view=diff&rev=418066&r1=418065&r2=418066
==============================================================================
--- branches/12/main/http.c (original)
+++ branches/12/main/http.c Sun Jul  6 20:00:46 2014
@@ -1036,7 +1036,7 @@
 	}
 	if (chunk_sync[0] != 0x0D || chunk_sync[1] != 0x0A) {
 		ast_log(LOG_WARNING, "HTTP chunk sync bytes wrong (0x%02X, 0x%02X)\n",
-			chunk_sync[0], chunk_sync[1]);
+			(unsigned) chunk_sync[0], (unsigned) chunk_sync[1]);
 		return -1;
 	}
 
    
    
More information about the asterisk-commits
mailing list