From 9d9de41c0a51726407184e5aec9b185775e03a5b Mon Sep 17 00:00:00 2001 From: "XTra.KrazzY" Date: Sun, 11 Jan 2009 13:05:43 +0000 Subject: [PATCH] Printf compile warning fixes git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1849 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/Thread.cpp | 6 +++--- Source/Core/DolphinWX/Src/CheatsWindow.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/Common/Src/Thread.cpp b/Source/Core/Common/Src/Thread.cpp index abe6fbaf8b..7db0089770 100644 --- a/Source/Core/Common/Src/Thread.cpp +++ b/Source/Core/Common/Src/Thread.cpp @@ -245,7 +245,7 @@ Thread::Thread(ThreadFunc function, void* arg) __FUNCTION__, &thread_id, &attr, function, arg, strerror(ret)); #ifdef THREAD_DEBUG - fprintf(stderr, "created new thread %d (func=%p, arg=%p)\n", thread_id, function, arg); + fprintf(stderr, "created new thread %lu (func=%p, arg=%p)\n", thread_id, function, arg); #endif } @@ -262,9 +262,9 @@ void Thread::WaitForDeath() { void* exit_status; int ret = pthread_join(thread_id, &exit_status); - if (ret) fprintf(stderr, "error joining thread %d: %s\n", thread_id, strerror(ret)); + if (ret) fprintf(stderr, "error joining thread %lu: %s\n", thread_id, strerror(ret)); if (exit_status) - fprintf(stderr, "thread %d exited with status %d\n", thread_id, *(int *)exit_status); + fprintf(stderr, "thread %d exited with status %lu\n", thread_id, *(int *)exit_status); thread_id = 0; } } diff --git a/Source/Core/DolphinWX/Src/CheatsWindow.cpp b/Source/Core/DolphinWX/Src/CheatsWindow.cpp index 89033a70b8..b87318ed67 100644 --- a/Source/Core/DolphinWX/Src/CheatsWindow.cpp +++ b/Source/Core/DolphinWX/Src/CheatsWindow.cpp @@ -165,7 +165,7 @@ void wxCheatsWindow::OnEvent_CheatsList_ItemSelected(wxCommandEvent& WXUNUSED (e m_Label_Codename->SetLabel(wxT("Name: ") + wxString::FromAscii(code.name.c_str())); char text[CHAR_MAX]; char* numcodes = text; - sprintf(numcodes, "Number of Codes: %i", code.ops.size()); + sprintf(numcodes, "Number of Codes: %lu", code.ops.size()); m_Label_NumCodes->SetLabel(wxString::FromAscii(numcodes)); m_ListBox_CodesList->Clear(); for (size_t j = 0; j < code.ops.size(); j++)