From cd7c1037c2da6fc47d4956f313106e6270c11b7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antti=20M=C3=A4=C3=A4tt=C3=A4?= Date: Mon, 2 Oct 2023 12:10:58 +0300 Subject: [PATCH] Fix compiler error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix missing ';' before '}' error. Change-Id: If377623b65c00b728c00db20a0d81e200150ae7d Reviewed-by: Antti Määttä --- src/plugins/tracing/qctflib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/tracing/qctflib.cpp b/src/plugins/tracing/qctflib.cpp index 7263983ca4..6899ef88e3 100644 --- a/src/plugins/tracing/qctflib.cpp +++ b/src/plugins/tracing/qctflib.cpp @@ -319,7 +319,7 @@ event { return QStringView(u"event {\n name = \"") + provider + QLatin1Char(':') + name + u"\";\n" + u" id = " + QString::number(eventId) + u";\n" + u" stream_id = 0;\n loglevel = 13;\n fields := struct {\n " - + metadata + u"\n };\n};\n" + + metadata + u"\n };\n};\n"; } QCtfTracePointPrivate *QCtfLibImpl::initializeTracepoint(const QCtfTracePointEvent &point)