From aefe7573088385918d4c772ad813ca677726f3f7 Mon Sep 17 00:00:00 2001 From: Kaleb Himes Date: Tue, 1 Jul 2014 12:42:56 -0600 Subject: [PATCH] removed printf causing warning when compiling with clang --- dtls/server-dtls-threaded.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dtls/server-dtls-threaded.c b/dtls/server-dtls-threaded.c index 9800a475..aeb19112 100644 --- a/dtls/server-dtls-threaded.c +++ b/dtls/server-dtls-threaded.c @@ -160,7 +160,6 @@ int AwaitDGram(CYASSL_CTX* ctx) printf("Connected!\n"); pthread_t threadid; - printf("new id %d created.\n",(int) threadid); /* SPIN A THREAD HERE TO HANDLE "buff" and "reply/ack" */ pthread_create(&threadid, NULL, ThreadControl, args); printf("control passed to thread control.\n");