[asterisk-commits] tilghman: branch 1.4 r60712 -
/branches/1.4/main/http.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sun Apr 8 07:12:00 MST 2007
Author: tilghman
Date: Sun Apr 8 09:12:00 2007
New Revision: 60712
URL: http://svn.digium.com/view/asterisk?view=rev&rev=60712
Log:
Fix --enable-dev-mode
Modified:
branches/1.4/main/http.c
Modified: branches/1.4/main/http.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/http.c?view=diff&rev=60712&r1=60711&r2=60712
==============================================================================
--- branches/1.4/main/http.c (original)
+++ branches/1.4/main/http.c Sun Apr 8 09:12:00 2007
@@ -361,7 +361,7 @@
body_len = mm_mimepart_getlength(part);
if (option_debug)
- ast_log(LOG_DEBUG, "Body length is %ld\n", body_len);
+ ast_log(LOG_DEBUG, "Body length is %ld\n", (long int)body_len);
fwrite(body, 1, body_len, f);
More information about the asterisk-commits
mailing list