diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-06-28 03:07:06 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-06-28 03:07:06 +0800 |
commit | 37a9065a63042dd3ec0c635b5181d963cc8a7493 (patch) | |
tree | 350fe660965e77107692f019716f8f9cc4788b61 /mail | |
parent | 8a22b04d886149645c84e5f0fdb8795308f3d62f (diff) | |
download | gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.gz gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.bz2 gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.lz gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.xz gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.zst gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.zip |
Little teeny fixes
svn path=/trunk/; revision=3764
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/message-list.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 79947c2ebb..94ce9f14f5 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2000-06-27 Peter Williams <peterw@curious-george.helixcode.com> + * message-list.c (mark_msg_seen): Need to return a value + on error. + * main.c (main): Don't start threads or enter threads if there's no threading! Sigh. diff --git a/mail/message-list.c b/mail/message-list.c index cd66d3080e..06d21ae753 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -128,7 +128,7 @@ mark_msg_seen (gpointer data) guint32 flags; if (!ml->selected_uid) - return; + return FALSE; flags = camel_folder_get_message_flags (ml->folder, ml->selected_uid, NULL); |