summaryrefslogtreecommitdiff
path: root/pjlib/src/pj/pool_dbg.c
diff options
context:
space:
mode:
Diffstat (limited to 'pjlib/src/pj/pool_dbg.c')
-rw-r--r--pjlib/src/pj/pool_dbg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pjlib/src/pj/pool_dbg.c b/pjlib/src/pj/pool_dbg.c
index c9f714ed..9ea40c9f 100644
--- a/pjlib/src/pj/pool_dbg.c
+++ b/pjlib/src/pj/pool_dbg.c
@@ -32,8 +32,9 @@
#endif
-#if defined(PJ_WIN32) && PJ_WIN32!=0 && defined(PJ_DEBUG) && PJ_DEBUG!=0 \
- && !PJ_NATIVE_STRING_IS_UNICODE
+#if ((defined(PJ_WIN32) && PJ_WIN32!=0) || \
+ (defined(PJ_WIN64) && PJ_WIN64 != 0)) && \
+ defined(PJ_DEBUG) && PJ_DEBUG!=0 && !PJ_NATIVE_STRING_IS_UNICODE
# include <windows.h>
# define TRACE_(msg) OutputDebugString(msg)
#endif