Skip to content
Permalink
Browse files
Merge pull request #11198 from shuffle2/bump
Updater: clarify a string
  • Loading branch information
JosJuice committed Oct 23, 2022
2 parents 100121c + 4705fb7 commit 7f2c78f
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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());

0 comments on commit 7f2c78f

Please sign in to comment.