From 67c69fd861689d6e1f5e2190d309d0b2c09de848 Mon Sep 17 00:00:00 2001
From: Nicolas Werner <nicolas.werner@hotmail.de>
Date: Thu, 2 Nov 2023 18:33:15 +0100
Subject: [PATCH] Make clazy happy

---
 src/Cache.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Cache.cpp b/src/Cache.cpp
index 1b0a8df0d..58dc689bb 100644
--- a/src/Cache.cpp
+++ b/src/Cache.cpp
@@ -296,8 +296,8 @@ cacheDirectoryName(const QString &userid, const QString &profile)
     hash.addData(userid.toUtf8());
     hash.addData(profile.toUtf8());
     return QStringLiteral("%1/db-%2")
-      .arg(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation))
-      .arg(hash.result().toHex());
+      .arg(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation),
+           hash.result().toHex());
 }
 
 void
-- 
GitLab