From b597804afc25d374944100ab9726849b1401cc23 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sat, 2 May 2009 10:29:14 +0200 Subject: [PATCH] email plugin: Don't assume `pthread_t' is a `unsigned long'. --- src/email.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/email.c b/src/email.c index 5e103ed7..4d4a08fc 100644 --- a/src/email.c +++ b/src/email.c @@ -360,8 +360,8 @@ static void *collect (void *arg) } } /* while (loop) */ - log_debug ("[thread #%5lu] shutting down connection on fd #%i", - pthread_self (), fileno (this->socket)); + log_debug ("Shutting down connection on fd #%i", + fileno (this->socket)); fclose (connection->socket); free (connection); -- 2.11.0