diff --git a/tests/manual/shootout/tst_codesize.cpp b/tests/manual/shootout/tst_codesize.cpp index 738d3b032c3..c1323cce2cc 100644 --- a/tests/manual/shootout/tst_codesize.cpp +++ b/tests/manual/shootout/tst_codesize.cpp @@ -254,9 +254,9 @@ void tst_CodeSize::codesize() << "\nExtra CXX Flags: " << c.extraCxxFlags.data(); #ifdef Q_OS_WIN # ifdef Q_CC_MSVC - QString arguments = "release\\" + c.file + ".obj"; + QString arguments = QString("release\\" + c.file + ".obj"); # else - QString arguments = "release\\" + c.file + ".o"; + QString arguments = QString("release\\" + c.file + ".o"); # endif #else QString arguments = QString(c.file + ".o");