diff options
| author | Méven Car <[email protected]> | 2026-01-22 17:06:16 +0100 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2026-01-22 17:06:16 +0100 |
| commit | 7570ba16a9cbc911df7a03394d2128c63d8032da (patch) | |
| tree | af622862c368f4e5de91f1d887dced4b858cb27c /src/main.cpp | |
| parent | 3b89b43f097342bc76ab7b235f9649077a87deff (diff) | |
clang-tidy: fix performance-avoid-endl
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 58999a258..eeb01854b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -60,7 +60,7 @@ int main(int argc, char **argv) "@info:shell %1 is a terminal command", "Running <application>Dolphin</application> with <command>sudo</command> is discouraged. Please run <icode>%1</icode> instead.", QStringLiteral("dolphin --sudo"))) - << std::endl; + << '\n'; // We could perform a privilege de-escalation here and continue as normal. It is a bit safer though to simply let the user restart without sudo. return EXIT_FAILURE; } |
