summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-10-23 10:58:41 +0200
committerGitHub <noreply@github.com>2022-10-23 10:58:41 +0200
commit7f2c78f345c4a43ec0306cf7501b931689be25ef (patch)
tree845a225b71dd3dd855b1fe2e1fb0359fcf480ceb /Source/Core
parent100121c0b1cb66d9be58f522bc06aefcddaed648 (diff)
parent4705fb7588fe3765c8dbab05b8a56571c8c2d422 (diff)
Merge pull request #11198 from shuffle2/bump
Updater: clarify a string
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/UpdaterCommon/UpdaterCommon.cpp2
1 files changed, 1 insertions, 1 deletions
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());