Skip to content

Commit

Permalink
Updater: clarify a string
Browse files Browse the repository at this point in the history
  • Loading branch information
shuffle2 committed Oct 23, 2022
1 parent 100121c commit 4705fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/UpdaterCommon/UpdaterCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ void CleanUpTempDir(const std::string& temp_dir, const TodoList& todo)
bool BackupFile(const std::string& path)
{
std::string backup_path = path + ".bak";
fprintf(log_fp, "Backing up unknown pre-existing %s to .bak.\n", path.c_str());
fprintf(log_fp, "Backing up existing %s to .bak.\n", path.c_str());
if (!File::Rename(path, backup_path))
{
fprintf(log_fp, "Cound not rename %s to %s for backup.\n", path.c_str(), backup_path.c_str());
Expand Down

0 comments on commit 4705fb7

Please sign in to comment.