diff options
| author | Shawn Hoffman <godisgovernment@gmail.com> | 2010-12-05 09:04:34 +0000 |
|---|---|---|
| committer | Shawn Hoffman <godisgovernment@gmail.com> | 2010-12-05 09:04:34 +0000 |
| commit | 9da4fe086b3f7c0c2e310c3b6438ed131fb13ff2 (patch) | |
| tree | 5867e2b49f5413d130d6d9c41479001dbd43a3d7 /Source/Core/Common/Src/DynamicLibrary.cpp | |
| parent | 3e4aa2060185d6122b838d166a3c3cb254ba8844 (diff) | |
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
Diffstat (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp')
| -rw-r--r-- | Source/Core/Common/Src/DynamicLibrary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
