mirror of https://github.com/microsoft/clang.git
[analyzer] Fix string not being formatted with extra arguments
Signed-off-by: Mikhail Ramalho <mikhail.ramalho@gmail.com> git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@335739 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f040667a18
commit
c5df29be09
|
@ -280,7 +280,8 @@ def runScanBuild(Dir, SBOutputDir, PBuildLogFile):
|
|||
}
|
||||
|
||||
SBOptions += "-analyzer-config '%s' " % (
|
||||
",".join("%s=%s" for key, value in AnalyzerConfig.iteritems()))
|
||||
",".join("%s=%s" % (key, value) for key, value in AnalyzerConfig.iteritems()))
|
||||
|
||||
# Always use ccc-analyze to ensure that we can locate the failures
|
||||
# directory.
|
||||
SBOptions += "--override-compiler "
|
||||
|
|
Loading…
Reference in New Issue