aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-mt.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-06-02 07:09:19 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-06-02 07:09:19 +0800
commit8771a6de3590d468d1a2c3cfab34955c624f614a (patch)
treedc23ed6ab0533bc9f241976f33b6c6cc2d7ee117 /mail/mail-mt.c
parent69a1e923a71ee881721e21b991de08b897f9e7b0 (diff)
downloadgsoc2013-evolution-8771a6de3590d468d1a2c3cfab34955c624f614a.tar
gsoc2013-evolution-8771a6de3590d468d1a2c3cfab34955c624f614a.tar.gz
gsoc2013-evolution-8771a6de3590d468d1a2c3cfab34955c624f614a.tar.bz2
gsoc2013-evolution-8771a6de3590d468d1a2c3cfab34955c624f614a.tar.lz
gsoc2013-evolution-8771a6de3590d468d1a2c3cfab34955c624f614a.tar.xz
gsoc2013-evolution-8771a6de3590d468d1a2c3cfab34955c624f614a.tar.zst
gsoc2013-evolution-8771a6de3590d468d1a2c3cfab34955c624f614a.zip
More code cleanup.
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r--mail/mail-mt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mail-mt.c b/mail/mail-mt.c
index f820f78a76..bc94d4538f 100644
--- a/mail/mail-mt.c
+++ b/mail/mail-mt.c
@@ -382,7 +382,7 @@ gint mail_msg_active(guint msgid)
gint active;
MAIL_MT_LOCK(mail_msg_lock);
- if (msgid == (unsigned int)-1)
+ if (msgid == (guint)-1)
active = g_hash_table_size(mail_msg_active_table) > 0;
else
active = g_hash_table_lookup(mail_msg_active_table, GINT_TO_POINTER(msgid)) != NULL;
@@ -686,7 +686,7 @@ do_async_event(struct _proxy_msg *m)
g_mutex_unlock(m->ea->lock);
}
-static int
+static gint
idle_async_event(gpointer mm)
{
do_async_event(mm);
@@ -829,7 +829,7 @@ do_call(struct _call_msg *m)
case MAIL_CALL_p_ppippp:
p1 = va_arg(ap, gpointer );
p2 = va_arg(ap, gpointer );
- i1 = va_arg(ap, int);
+ i1 = va_arg(ap, gint);
p3 = va_arg(ap, gpointer );
p4 = va_arg(ap, gpointer );
p5 = va_arg(ap, gpointer );