Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9198 from leoetlino/format-fix
FileUtil: Fix format string
  • Loading branch information
lioncash committed Oct 26, 2020
2 parents d2a2ec8 + 2d921da commit 712edfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/FileUtil.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 712edfb

Please sign in to comment.