aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-display.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-09 13:30:37 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-09 13:30:37 +0800
commite7697db4fc1f4c90e74fab18dd6432f144b53cdd (patch)
treea67eab05308d0ab27cd22c4ac296b718622c3b71 /mail/mail-display.c
parent5bdcadd4cf57f4f9ee405a33daf7a3f91e1f6bf1 (diff)
downloadgsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.tar
gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.tar.gz
gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.tar.bz2
gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.tar.lz
gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.tar.xz
gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.tar.zst
gsoc2013-evolution-e7697db4fc1f4c90e74fab18dd6432f144b53cdd.zip
Fixed some warnings.
2000-08-09 Christopher James Lahey <clahey@helixcode.com> * mail-display.c, mail-format.c, mail-ops.c: Fixed some warnings. * message-list.c: Fix the call to e_popup_menu_run to match the new signature. svn path=/trunk/; revision=4634
Diffstat (limited to 'mail/mail-display.c')
-rw-r--r--mail/mail-display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-display.c b/mail/mail-display.c
index 3603cfb41f..31f8cb0a71 100644
--- a/mail/mail-display.c
+++ b/mail/mail-display.c
@@ -98,7 +98,7 @@ static char *
make_safe_filename (const char *prefix, CamelMimePart *part)
{
GMimeContentField *type;
- const char *name;
+ const char *name = NULL;
char *safe, *p;
type = camel_mime_part_get_content_type (part);
@@ -124,7 +124,7 @@ make_safe_filename (const char *prefix, CamelMimePart *part)
return safe;
}
-CamelMimePart *
+static CamelMimePart *
part_for_url (const char *url, CamelMimeMessage *message)
{
GHashTable *urls;