Fix compile warning

Change-Id: Ib98f444baa1c35e038921b4e25927faee64f0877
Reviewed-by: Andre Poenitz <andre.poenitz@theqtcompany.com>
This commit is contained in:
Christian Stenger
2015-02-05 07:51:51 +01:00
parent 9159799a2a
commit aba302ddef

View File

@@ -59,8 +59,7 @@ Result::Type TestResult::resultFromString(const QString &resultString)
return Result::BLACKLISTED_PASS;
if (resultString == QLatin1String("bfail"))
return Result::BLACKLISTED_FAIL;
qDebug(" unexpected testresult...");
qDebug(resultString.toLatin1());
qDebug("Unexpected test result: %s", qPrintable(resultString));
return Result::UNKNOWN;
}