diff options
author | Dan Winship <danw@src.gnome.org> | 2000-08-09 07:37:31 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-08-09 07:37:31 +0800 |
commit | ffaebb53febb7441ee7cfccaf3819a29efd702d7 (patch) | |
tree | b65f92b1e9a6d958f5e2583e7a4c8f735fe7d87a /mail/message-thread.c | |
parent | 14e163207e7bea5a383f8b538041156dc2cb1c84 (diff) | |
download | gsoc2013-evolution-ffaebb53febb7441ee7cfccaf3819a29efd702d7.tar gsoc2013-evolution-ffaebb53febb7441ee7cfccaf3819a29efd702d7.tar.gz gsoc2013-evolution-ffaebb53febb7441ee7cfccaf3819a29efd702d7.tar.bz2 gsoc2013-evolution-ffaebb53febb7441ee7cfccaf3819a29efd702d7.tar.lz gsoc2013-evolution-ffaebb53febb7441ee7cfccaf3819a29efd702d7.tar.xz gsoc2013-evolution-ffaebb53febb7441ee7cfccaf3819a29efd702d7.tar.zst gsoc2013-evolution-ffaebb53febb7441ee7cfccaf3819a29efd702d7.zip |
Fix some compiler warnings.
* mail-crypto.c, mail-format.c, message-thread.c: Fix some
compiler warnings.
svn path=/trunk/; revision=4615
Diffstat (limited to 'mail/message-thread.c')
-rw-r--r-- | mail/message-thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/message-thread.c b/mail/message-thread.c index c35e39f470..f199c27341 100644 --- a/mail/message-thread.c +++ b/mail/message-thread.c @@ -422,7 +422,7 @@ thread_messages(CamelFolder *folder, GPtrArray *uids) mi = camel_folder_get_message_info (folder, uids->pdata[i]); if (mi == NULL) { - g_warning("Folder doesn't contain uid %s", uids->pdata[i]); + g_warning("Folder doesn't contain uid %s", (char *)uids->pdata[i]); continue; } @@ -436,7 +436,7 @@ thread_messages(CamelFolder *folder, GPtrArray *uids) } else { d(printf("doing : (no message id)\n")); c = g_malloc0(sizeof(*c)); - g_hash_table_insert(no_id_table, mi, c); + g_hash_table_insert(no_id_table, (void *)mi, c); } c->message = mi; |