From 7adb7cc2921d0679ba781627a151696b8990f693 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 19 Feb 2017 14:01:46 +0100 Subject: [PATCH] Add explicit {} --- shared/shared.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 957efd3..17067da 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -605,9 +605,10 @@ void changeIdentification(const QString &id, const QString &binaryPath) if (binaryPath.contains("libQt5Core")) { LogDebug() << "libQt5Core detected, patching its qt_prfxpath"; QString* errorMessage; - if (!patchQtCore(binaryPath, errorMessage)) + if (!patchQtCore(binaryPath, errorMessage)){ LogError() << errorMessage; return; + } } }