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/admin | |
| parent | 3b89b43f097342bc76ab7b235f9649077a87deff (diff) | |
clang-tidy: fix performance-avoid-endl
Diffstat (limited to 'src/admin')
| -rw-r--r-- | src/admin/workerintegration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/admin/workerintegration.cpp b/src/admin/workerintegration.cpp index 8a24619ab..2e1986bae 100644 --- a/src/admin/workerintegration.cpp +++ b/src/admin/workerintegration.cpp @@ -62,7 +62,7 @@ void Admin::guideUserTowardsInstallingAdminWorker() DolphinPackageInstaller adminWorkerInstaller{ADMIN_WORKER_PACKAGE_NAME, QUrl(QStringLiteral("appstream://org.kde.kio.admin")), isWorkerInstalled}; QObject::connect(&adminWorkerInstaller, &KJob::result, [](KJob *job) { if (job->error()) { - std::cout << qPrintable(job->errorString()) << std::endl; + std::cout << qPrintable(job->errorString()) << '\n'; exit(1); } }); |
