You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2012/11/13 13:42:34 UTC

svn commit: r1408703 - /httpd/mod_mbox/trunk/module-2.0/mod_mbox_mime.c

Author: rjung
Date: Tue Nov 13 12:42:34 2012
New Revision: 1408703

URL: http://svn.apache.org/viewvc?rev=1408703&view=rev
Log:
Use correct format for apr_size_t.

Modified:
    httpd/mod_mbox/trunk/module-2.0/mod_mbox_mime.c

Modified: httpd/mod_mbox/trunk/module-2.0/mod_mbox_mime.c
URL: http://svn.apache.org/viewvc/httpd/mod_mbox/trunk/module-2.0/mod_mbox_mime.c?rev=1408703&r1=1408702&r2=1408703&view=diff
==============================================================================
--- httpd/mod_mbox/trunk/module-2.0/mod_mbox_mime.c (original)
+++ httpd/mod_mbox/trunk/module-2.0/mod_mbox_mime.c Tue Nov 13 12:42:34 2012
@@ -363,7 +363,7 @@ char *mbox_mime_get_body(request_rec *r,
             ap_varbuf_init(p, &vb, 0);
             vb.strlen = 0;
             ap_log_rerror(APLOG_MARK, APLOG_TRACE3, 0, r,
-                          "mbox_mime_get_body: converting %d bytes from %s",
+                          "mbox_mime_get_body: converting %" APR_SIZE_T_FMT " bytes from %s",
                           new_len, m->charset);
             if ((rv = mbox_cte_convert_to_utf8(p, m->charset, new_body, new_len, &vb))
                 == APR_SUCCESS) {