From 635578b30ba2e1514e251fa3add98270413dcb6b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 10 Dec 2014 11:07:18 -0500 Subject: [PATCH] use correct conditional to choose between different DEBUG_THREAD_SELF macros --- libs/pbd/pbd/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/pbd/debug.h b/libs/pbd/pbd/debug.h index 0f09e02d29..446d730dc2 100644 --- a/libs/pbd/pbd/debug.h +++ b/libs/pbd/pbd/debug.h @@ -61,7 +61,7 @@ namespace PBD { #define DEBUG_STR(a) /* empty */ #define DEBUG_STR_APPEND(a,b) /* empty */ #define DEBUG_ENABLED(b) (0) -#ifdef PTW32_VERSION +#ifdef PLATFORM_WINDOWS #define DEBUG_THREAD_SELF pthread_self().p #else #define DEBUG_THREAD_SELF pthread_self()