[plasma/libkscreen] src/doctor: Remove stray semicolon after if-block in Doctor::parseOutputArgs()

Vlad Zahorodnii <[email protected]> Tue, 4 Aug 2026 11:57:16 +0000 (UTC)
Newsgroups gmane.comp.kde.cvs
Message-ID <[email protected]>
Git commit c8fd0a55f7754361e35b9a81ca61d7ac39ef4f0e by Vlad Zahorodnii, on behalf of zhang shoucheng.
Committed on 04/08/2026 at 11:55.
Pushed by vladz into branch 'master'.

Remove stray semicolon after if-block in Doctor::parseOutputArgs()

M  +1    -1    src/doctor/doctor.cpp

https://invent.kde.org/plasma/libkscreen/-/commit/c8fd0a55f7754361e35b9a81ca61d7ac39ef4f0e

diff --git a/src/doctor/doctor.cpp b/src/doctor/doctor.cpp
index 752cebba..f884de4e 100644
--- a/src/doctor/doctor.cpp
+++ b/src/doctor/doctor.cpp
@@ -244,7 +244,7 @@ void Doctor::parseOutputArgs()
                     if (ops.count() == 5) {
                         const QString dbl = ops[3] + QStringLiteral(".") + ops[4];
                         scale = dbl.toDouble(&ok);
-                    };
+                    }
                     // set scale
                     if (!ok || qFuzzyCompare(scale, 0.0)) {
                         qCWarning(KSCREEN_DOCTOR) << "Could not set scale " << scale << " to output " << output_id;