summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-12-10 11:07:18 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-12-10 11:07:18 -0500
commit635578b30ba2e1514e251fa3add98270413dcb6b (patch)
tree37d640b07dc94d83a35e3c64930552d859bc21a9 /libs
parentc06c15596b65b253b1a3d6156f02aad593c7f826 (diff)
use correct conditional to choose between different DEBUG_THREAD_SELF macros
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd/pbd/debug.h2
1 files changed, 1 insertions, 1 deletions
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()