diff options
Diffstat (limited to 'src/plugins/cppcheck/cppchecktool.cpp')
-rw-r--r-- | src/plugins/cppcheck/cppchecktool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppchecktool.cpp b/src/plugins/cppcheck/cppchecktool.cpp index 9636443b0e..6501ed583a 100644 --- a/src/plugins/cppcheck/cppchecktool.cpp +++ b/src/plugins/cppcheck/cppchecktool.cpp @@ -118,7 +118,7 @@ void CppcheckTool::updateArguments() if (!m_options.unusedFunction && !m_options.customArguments.contains("-j ")) arguments.push_back("-j " + QString::number(QThread::idealThreadCount())); - arguments.push_back("--template={file},{line},{severity},{id},{message}"); + arguments.push_back("--template=\"{file},{line},{severity},{id},{message}\""); m_runner->reconfigure(m_options.binary, arguments.join(' ')); } |