From 98827b1d491d4f136479995b7d0bbb49037feb9e Mon Sep 17 00:00:00 2001 From: Curtis Rubel Date: Fri, 2 Dec 2016 08:07:15 -0500 Subject: [PATCH] Missed the printf define at the top of this file. Put back this: #ifdef DEBUG # define DPRINTF(arg) printf arg #else # define DPRINTF(arg) #endif I think that should do it now... --- src/OpenThreads/pthreads/PThread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenThreads/pthreads/PThread.cpp b/src/OpenThreads/pthreads/PThread.cpp index b805331ec..e8d48b5ce 100644 --- a/src/OpenThreads/pthreads/PThread.cpp +++ b/src/OpenThreads/pthreads/PThread.cpp @@ -57,13 +57,13 @@ #include using namespace OpenThreads; -/* + #ifdef DEBUG # define DPRINTF(arg) printf arg #else # define DPRINTF(arg) #endif -*/ + //----------------------------------------------------------------------------- // Initialize the static unique ids.