summary refs log tree commit diff
path: root/unmime.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-14 18:21:07 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-14 18:21:07 +0200
commitbc9d79606b193fcf79a294c12590b258c25c5a0f (patch)
treeaccb479ff521928b54fd9f76c2da769c3a18d17b /unmime.c
parentb56f2a668bbbcb7d4956ce5c94c932be543420ee (diff)
downloadmblaze-bc9d79606b193fcf79a294c12590b258c25c5a0f.tar.gz
mblaze-bc9d79606b193fcf79a294c12590b258c25c5a0f.tar.xz
mblaze-bc9d79606b193fcf79a294c12590b258c25c5a0f.zip
fix printf format codes
Diffstat (limited to 'unmime.c')
-rw-r--r--unmime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unmime.c b/unmime.c
index 8c0c147..596ad9a 100644
--- a/unmime.c
+++ b/unmime.c
@@ -23,7 +23,7 @@ recmime(struct message *msg, int depth)
 	size_t bodylen;
 
 	if (blaze822_mime_body(msg, &ct, &body, &bodylen, &bodychunk)) {
-		printf("%*.sbody %s len %d\n", depth*2, "", ct, bodylen);
+		printf("%*.sbody %s len %zd\n", depth*2, "", ct, bodylen);
 		if (strncmp(ct, "multipart/", 10) == 0) {
 			while (blaze822_multipart(msg, &imsg))
 				recmime(imsg, depth+1);