From 5064d34b0419f4461d314e80f4a32bc1b1fa4977 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Sat, 16 Mar 2024 21:20:41 +0200 Subject: [PATCH] kutils: correct placeholders in getLockName() function Signed-off-by: Ivailo Monev --- kutils/kpasswdstore/kpasswdstore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kutils/kpasswdstore/kpasswdstore.cpp b/kutils/kpasswdstore/kpasswdstore.cpp index ecf30bd8..f6ea66a7 100644 --- a/kutils/kpasswdstore/kpasswdstore.cpp +++ b/kutils/kpasswdstore/kpasswdstore.cpp @@ -46,7 +46,7 @@ static QByteArray getCookie() static QString getLockName(const QByteArray &cookie, const QString &storeid) { - return QString::fromLatin1("%2-%3").arg(cookie, storeid); + return QString::fromLatin1("%1-%2").arg(cookie, storeid); } class KPasswdStorePrivate