From 4705fb7588fe3765c8dbab05b8a56571c8c2d422 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sun, 23 Oct 2022 01:34:57 -0700 Subject: [PATCH] Updater: clarify a string --- Source/Core/UpdaterCommon/UpdaterCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/UpdaterCommon/UpdaterCommon.cpp b/Source/Core/UpdaterCommon/UpdaterCommon.cpp index 9bed359221..e307b0610e 100644 --- a/Source/Core/UpdaterCommon/UpdaterCommon.cpp +++ b/Source/Core/UpdaterCommon/UpdaterCommon.cpp @@ -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());