diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-10-12 04:44:33 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-10-12 04:44:33 +0800 |
commit | 8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67 (patch) | |
tree | 19ccb700f6df46cee8ce0c48d5122e1e5914a6d8 /mail/em-format.c | |
parent | d04eaa26418f68ebbe3a5a52711c72272c979399 (diff) | |
download | gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.tar.gz gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.tar.zst gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.zip |
Miscellaneous changes related to bug #437579.
2007-10-11 Matthew Barnes <mbarnes@redhat.com>
Miscellaneous changes related to bug #437579.
* configure.in:
Put a blank line between the configuration summary and the
final "now type make" message.
* mail/em-format.c (em_format_add_puri):
Use G_GSIZE_FORMAT when printing a gsize/size_t to make compilers
on all arches happy.
* plugins/mail-notification/mail-notification.c:
Put the notification_callback() declaration inside a
#ifdef HAVE_LIBNOTIFY block to avoid a potential compiler warning.
* calendar/gui/alarm-notify/alarm-queue.c:
Fix an implicit GTK+ function declaration on x86_64.
svn path=/trunk/; revision=34378
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); } |