mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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
This commit is contained in:
@ -337,7 +337,7 @@ u64 GetSize(const char *filename)
|
||||
// on windows it's actually _stat64 defined in commonFuncs
|
||||
struct stat64 buf;
|
||||
if (stat64(filename, &buf) == 0) {
|
||||
DEBUG_LOG(COMMON, "GetSize: %s: %ld", filename, buf.st_size);
|
||||
DEBUG_LOG(COMMON, "GetSize: %s: %lld", filename, buf.st_size);
|
||||
return buf.st_size;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user