From 3f992da422e0d412ac6677be8f7ac143c0d94cea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Mon, 27 Apr 2015 16:18:51 +0200 Subject: [PATCH] [utils] Fix a bad format specifier. --- mono/utils/mono-threads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/utils/mono-threads.c b/mono/utils/mono-threads.c index 7bbf2695b95..9d55cd562c2 100644 --- a/mono/utils/mono-threads.c +++ b/mono/utils/mono-threads.c @@ -151,7 +151,7 @@ dump_threads (void) MOSTLY_ASYNC_SAFE_PRINTF ("\t0x?08\t- blocking with pending suspend (GOOD)\n"); FOREACH_THREAD_SAFE (info) { - MOSTLY_ASYNC_SAFE_PRINTF ("--thread %p id %p [%p] state %x %s\n", info, mono_thread_info_get_tid (info), (void*)(size_t)info->native_handle, info->thread_state, info == cur ? "GC INITIATOR" : "" ); + MOSTLY_ASYNC_SAFE_PRINTF ("--thread %p id %p [%p] state %x %s\n", info, (void *) mono_thread_info_get_tid (info), (void*)(size_t)info->native_handle, info->thread_state, info == cur ? "GC INITIATOR" : "" ); } END_FOREACH_THREAD_SAFE } -- 2.25.1