thread.c: fix thread ID format

* thread.c (DEBUG_OUT): fix format specifier for a thread ID,
  which is DWORD not pointer.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-06-11 08:37:29 +00:00
parent 16b512b33b
commit a678de48c5

View File

@ -223,7 +223,7 @@ static void timer_thread_function(void *);
#define DEBUG_OUT() \ #define DEBUG_OUT() \
WaitForSingleObject(&debug_mutex, INFINITE); \ WaitForSingleObject(&debug_mutex, INFINITE); \
printf(POSITION_FORMAT"%p - %s" POSITION_ARGS, GetCurrentThreadId(), buf); \ printf(POSITION_FORMAT"%#lx - %s" POSITION_ARGS, GetCurrentThreadId(), buf); \
fflush(stdout); \ fflush(stdout); \
ReleaseMutex(&debug_mutex); ReleaseMutex(&debug_mutex);