diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-11-07 05:57:01 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-11-07 05:57:01 +0800 |
commit | e6ff03471eb91bf8a5e035f926baaab80aa6ccb4 (patch) | |
tree | ad6a8568b63ed53c56243ce04084759c093cbaae /mail | |
parent | 49265bef8d773e845ec967acf6e2c1f1b670c995 (diff) | |
download | gsoc2013-evolution-e6ff03471eb91bf8a5e035f926baaab80aa6ccb4.tar gsoc2013-evolution-e6ff03471eb91bf8a5e035f926baaab80aa6ccb4.tar.gz gsoc2013-evolution-e6ff03471eb91bf8a5e035f926baaab80aa6ccb4.tar.bz2 gsoc2013-evolution-e6ff03471eb91bf8a5e035f926baaab80aa6ccb4.tar.lz gsoc2013-evolution-e6ff03471eb91bf8a5e035f926baaab80aa6ccb4.tar.xz gsoc2013-evolution-e6ff03471eb91bf8a5e035f926baaab80aa6ccb4.tar.zst gsoc2013-evolution-e6ff03471eb91bf8a5e035f926baaab80aa6ccb4.zip |
fixed some compile warnings
svn path=/trunk/; revision=23202
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mail-autofilter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mail-autofilter.c b/mail/mail-autofilter.c index 3eee3ad8eb..17d5f485d8 100644 --- a/mail/mail-autofilter.c +++ b/mail/mail-autofilter.c @@ -39,6 +39,7 @@ #include "mail-vfolder.h" #include "mail-autofilter.h" +#include "mail-component.h" #include "camel/camel.h" @@ -293,7 +294,7 @@ rule_from_message (FilterRule *rule, RuleContext *context, CamelMimeMessage *msg g_free(mlist); } if (flags & AUTO_THREAD) { - const char *msgid, *refs = NULL; + const char *msgid = NULL, *refs = NULL; char *name; if (!(refs = camel_medium_get_header ((CamelMedium *) msg, "References"))) { |