diff options
Diffstat (limited to 'mail/em-format.c')
-rw-r--r-- | mail/em-format.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-format.c b/mail/em-format.c index 94cba750bf..5bedde4007 100644 --- a/mail/em-format.c +++ b/mail/em-format.c @@ -366,7 +366,9 @@ em_format_add_puri(EMFormat *emf, size_t size, const char *cid, CamelMimePart *p d(printf("adding puri for part: %s\n", emf->part_id->str)); if (size < sizeof(*puri)) { - g_warning ("size (%d) less than size of puri\n", size); + g_warning ( + "size (%" G_GSIZE_FORMAT + ") less than size of puri\n", size); size = sizeof (*puri); } |