aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-msgport.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/e-msgport.c')
-rw-r--r--e-util/e-msgport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-msgport.c b/e-util/e-msgport.c
index dabf638b48..eb6e07e24f 100644
--- a/e-util/e-msgport.c
+++ b/e-util/e-msgport.c
@@ -14,7 +14,7 @@
#include <pthread.h>
#define m(x) /* msgport debug */
-#define t(x) x /* thread debug */
+#define t(x) /* thread debug */
void e_dlist_init(EDList *v)
{
@@ -616,7 +616,7 @@ void e_thread_put(EThread *e, EMsg *msg)
&& g_list_length(e->id_list) < e->queue_limit
&& pthread_create(&id, NULL, thread_dispatch, e) == 0) {
struct _thread_info *info = g_malloc0(sizeof(*info));
- printf("created NEW thread %ld\n", id);
+ t(printf("created NEW thread %ld\n", id));
info->id = id;
info->busy = TRUE;
e->id_list = g_list_append(e->id_list, info);