summaryrefslogtreecommitdiffstats
path: root/threads.c
diff options
context:
space:
mode:
Diffstat (limited to 'threads.c')
-rw-r--r--threads.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/threads.c b/threads.c
index 5933d3e5..e32ff0d9 100644
--- a/threads.c
+++ b/threads.c
@@ -88,7 +88,6 @@ rsRetVal thrdTerminate(thrdInfo_t *pThis)
{
assert(pThis != NULL);
-dbgprintf("Terminate thread %lx\n", pThis->thrdID);
pthread_cancel(pThis->thrdID);
pthread_join(pThis->thrdID, NULL); /* wait for cancel to complete */
pThis->bIsActive = 0;