From 3a64c36c663996f41ab36f7d7a13ea39379d1fb1 Mon Sep 17 00:00:00 2001 From: "XTra.KrazzY" Date: Sun, 11 Jan 2009 13:25:05 +0000 Subject: [PATCH] fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1850 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/Thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Src/Thread.cpp b/Source/Core/Common/Src/Thread.cpp index 7db0089770..28f59daecb 100644 --- a/Source/Core/Common/Src/Thread.cpp +++ b/Source/Core/Common/Src/Thread.cpp @@ -264,7 +264,7 @@ void Thread::WaitForDeath() int ret = pthread_join(thread_id, &exit_status); if (ret) fprintf(stderr, "error joining thread %lu: %s\n", thread_id, strerror(ret)); if (exit_status) - fprintf(stderr, "thread %d exited with status %lu\n", thread_id, *(int *)exit_status); + fprintf(stderr, "thread %lu exited with status %d\n", thread_id, *(int *)exit_status); thread_id = 0; } }