# HG changeset patch # User David King <amigadave@amigadave.com> # Date 1621869805 -3600 # Mon May 24 16:23:25 2021 +0100 # Node ID 6b5047ca25dfcc14aafc30958f8a7e374b110fb6 # Parent cf4eff2f9ec783e06ad8d265c2bcaf631160fa19 Fix some misleading indentation Found by Coverity. https://bugzilla.redhat.com/show_bug.cgi?id=1938808 diff --git a/win32/configure.js b/win32/configure.js --- a/win32/configure.js +++ b/win32/configure.js @@ -489,7 +489,7 @@ 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";