about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--mshow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mshow.c b/mshow.c
index 349b655..8cab666 100644
--- a/mshow.c
+++ b/mshow.c
@@ -263,7 +263,7 @@ list_mime(int depth, struct message *msg, char *body, size_t bodylen)
 	char *mt = mimetype(ct);
 	char *filename = mime_filename(msg);
 
-	printf("%*.s%d: %s size=%zd", depth*2, "", ++mimecount, mt, bodylen);
+	printf("  %*.s%d: %s size=%zd", depth*2, "", ++mimecount, mt, bodylen);
 	if (filename) {
 		printf(" name=\"%s\"", filename);
 		free(filename);