From 86fc0a3c03531d4e7a5ecc88172297122c26a507 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Sun, 8 Apr 2007 14:12:00 +0000 Subject: [PATCH] Fix --enable-dev-mode git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@60712 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/http.c b/main/http.c index 014940b5a3..a448d4180a 100644 --- a/main/http.c +++ b/main/http.c @@ -361,7 +361,7 @@ static void post_raw(struct mm_mimepart *part, const char *post_dir, const char 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);