Add explicit {}

This commit is contained in:
probonopd
2017-02-19 14:01:46 +01:00
parent 2e5cfae904
commit 7adb7cc292
+2 -1
View File
@@ -605,10 +605,11 @@ void changeIdentification(const QString &id, const QString &binaryPath)
if (binaryPath.contains("libQt5Core")) { if (binaryPath.contains("libQt5Core")) {
LogDebug() << "libQt5Core detected, patching its qt_prfxpath"; LogDebug() << "libQt5Core detected, patching its qt_prfxpath";
QString* errorMessage; QString* errorMessage;
if (!patchQtCore(binaryPath, errorMessage)) if (!patchQtCore(binaryPath, errorMessage)){
LogError() << errorMessage; LogError() << errorMessage;
return; return;
} }
}
} }