From 23734923dbc7b87fbea99d629ae959eed852deb9 Mon Sep 17 00:00:00 2001 From: David King Date: Mon, 24 May 2021 16:23:25 +0100 Subject: [PATCH] Fix some misleading indentation Found by Coverity. https://bugzilla.redhat.com/show_bug.cgi?id=1938808 --- win32/configure.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/configure.js b/win32/configure.js index 549b942e..c1297944 100644 --- a/win32/configure.js +++ b/win32/configure.js @@ -489,7 +489,7 @@ txtOut += "-------------------------\n"; txtOut += " Compiler: " + compiler + "\n"; if (compiler == "msvc") txtOut += " C-Runtime option: " + cruntime + "\n"; - txtOut += " Embed Manifest: " + boolToStr(vcmanifest) + "\n"; +txtOut += " Embed Manifest: " + boolToStr(vcmanifest) + "\n"; txtOut += " Debug symbols: " + boolToStr(buildDebug) + "\n"; txtOut += " Static xsltproc: " + boolToStr(buildStatic) + "\n"; txtOut += " Install prefix: " + buildPrefix + "\n";