From 2794742facb103b9a5aae043391a892d4327f2b1 Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Thu, 25 May 2023 15:59:24 +0200 Subject: [PATCH] QLogging: fix indentation Just a whitespace change. Change-Id: Ib54cb2f8c49c0cece3ff9b85f290c0c21eb85487 Reviewed-by: Thiago Macieira --- src/corelib/global/qlogging.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelib/global/qlogging.cpp b/src/corelib/global/qlogging.cpp index a9a3d019c7..4cc4505574 100644 --- a/src/corelib/global/qlogging.cpp +++ b/src/corelib/global/qlogging.cpp @@ -1627,8 +1627,8 @@ QString qFormatLogMessage(QtMsgType type, const QMessageLogContext &context, con QString timeFormat = pattern->timeArgs.at(timeArgsIdx); timeArgsIdx++; if (timeFormat == "process"_L1) { - quint64 ms = pattern->timer.elapsed(); - message.append(QString::asprintf("%6d.%03d", uint(ms / 1000), uint(ms % 1000))); + quint64 ms = pattern->timer.elapsed(); + message.append(QString::asprintf("%6d.%03d", uint(ms / 1000), uint(ms % 1000))); } else if (timeFormat == "boot"_L1) { // just print the milliseconds since the elapsed timer reference // like the Linux kernel does