FileUtil: Fix format string

Fixes a recent regression: https://github.com/dolphin-emu/dolphin/pull/9187#issuecomment-716835091
This commit is contained in:
Léo Lam 2020-10-26 22:47:56 +01:00
parent d2a2ec870d
commit 2d921da860
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741

View File

@ -348,7 +348,7 @@ bool Copy(const std::string& source_path, const std::string& destination_path)
if (CopyFile(UTF8ToTStr(source_path).c_str(), UTF8ToTStr(destination_path).c_str(), FALSE))
return true;
ERROR_LOG_FMT(COMMON, "Copy: failed %s --> %s: %s", source_path, destination_path,
ERROR_LOG_FMT(COMMON, "Copy: failed {} --> {}: {}", source_path, destination_path,
GetLastErrorString());
return false;
#else