summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorRolfKal <rolf.kalbermatter@kalbermatter.nl>2025-10-15 20:00:27 +0200
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-10-21 00:50:27 +0300
commit49a850ccc14de253f9645427594f25c74931e4c5 (patch)
treec214fa26bcca008569f4405cd9ec6a3d70766c65 /indra/newview
parente12958161c6f4edec1300db2045bba97aff26048 (diff)
Remove a trailing space and a missed LLFile::remove() call right before the LLFile::rename()
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewer.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index eadc5e7e63..bfd8b1dcc7 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -2398,7 +2398,6 @@ void LLAppViewer::initLoggingAndGetLastDuration()
if (gDirUtilp->fileExists(user_data_path_cef_log))
{
std::string user_data_path_cef_old = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, "cef.old");
- LLFile::remove(user_data_path_cef_old, ENOENT);
LLFile::rename(user_data_path_cef_log, user_data_path_cef_old);
}
}