From 9da4fe086b3f7c0c2e310c3b6438ed131fb13ff2 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sun, 5 Dec 2010 09:04:34 +0000 Subject: allow gcc to check the format of args being passed to MsgAlert and GenericLog. Fixed nearly all warnings that arose from this, as well as some preexisting ones (some were actually crashes and/or bugs...) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6522 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/DynamicLibrary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp') diff --git a/Source/Core/Common/Src/DynamicLibrary.cpp b/Source/Core/Common/Src/DynamicLibrary.cpp index 95ec340e71..ff2833a6b4 100644 --- a/Source/Core/Common/Src/DynamicLibrary.cpp +++ b/Source/Core/Common/Src/DynamicLibrary.cpp @@ -143,7 +143,7 @@ void* DynamicLibrary::Get(const char* funcname) const if (!library) { - ERROR_LOG(COMMON, "DL: Get failed %s - Library not loaded"); + ERROR_LOG(COMMON, "DL: Get failed %s - Library not loaded", funcname); return NULL; } -- cgit v1.2.3