summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2015-02-05 07:51:51 +0100
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-02-16 14:30:43 +0200
commitaba302ddefb95e009e05556a3cdec1a0d9d1b62c (patch)
tree762c606848e6026c1250a3c9b4cf79f4700d26a2
parent9159799a2aaa4622471f6bf7eabb884989d4a9b3 (diff)
downloadqt-creator-aba302ddefb95e009e05556a3cdec1a0d9d1b62c.tar.gz
Fix compile warning
Change-Id: Ib98f444baa1c35e038921b4e25927faee64f0877 Reviewed-by: Andre Poenitz <andre.poenitz@theqtcompany.com>
-rw-r--r--plugins/autotest/testresult.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/autotest/testresult.cpp b/plugins/autotest/testresult.cpp
index 810dcf2c43..5e87895560 100644
--- a/plugins/autotest/testresult.cpp
+++ b/plugins/autotest/testresult.cpp
@@ -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;
}