diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-12 15:03:51 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-12 15:03:51 +0000 |
commit | cea3919ae61ae16e04a5ee5c5394970c3960a0af (patch) | |
tree | 41c74b4c9bc624cc96691bf759a7d177f3345171 /thread_win32.c | |
parent | 150b4efa5510d77fdde7b9692b3c391fbde6ac19 (diff) |
* configure.in (RUBY_CHECK_PRINTF_PREFIX): check for printf format
specifier if possible.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29468 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_win32.c')
-rw-r--r-- | thread_win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_win32.c b/thread_win32.c index 9e64ea4347..1b15baed81 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -497,7 +497,7 @@ native_thread_create(rb_thread_t *th) if (THREAD_DEBUG) { Sleep(0); - thread_debug("create: (th: %p, thid: %p, intr: %p), stack size: %d\n", + thread_debug("create: (th: %p, thid: %p, intr: %p), stack size: %"PRIdSIZE"\n", th, th->thread_id, th->native_thread_data.interrupt_event, stack_size); } |