summary refs log tree commit diff
path: root/unmime.c
diff options
context:
space:
mode:
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);