1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-26 07:29:17 +02:00

* cosmetic

This commit is contained in:
djcb 2012-12-25 19:43:06 +02:00
parent b1e1574883
commit c0a9102c6b

View File

@ -401,7 +401,6 @@ static GHashTable*
get_thread_ids (MuMsgIter *iter) get_thread_ids (MuMsgIter *iter)
{ {
GHashTable *ids; GHashTable *ids;
ids = g_hash_table_new_full (g_str_hash, g_str_equal, ids = g_hash_table_new_full (g_str_hash, g_str_equal,
(GDestroyNotify)g_free, NULL); (GDestroyNotify)g_free, NULL);
@ -410,8 +409,6 @@ get_thread_ids (MuMsgIter *iter)
if ((thread_id = mu_msg_iter_get_thread_id (iter))) if ((thread_id = mu_msg_iter_get_thread_id (iter)))
g_hash_table_insert (ids, g_strdup (thread_id), g_hash_table_insert (ids, g_strdup (thread_id),
GSIZE_TO_POINTER(TRUE)); GSIZE_TO_POINTER(TRUE));
// g_print ("tid:'%s'\n", thread_id ? thread_id : "<none>");
if (!mu_msg_iter_next (iter)) if (!mu_msg_iter_next (iter))
break; break;
} }