summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid King <amigadave@amigadave.com>2021-05-24 16:23:25 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2022-02-12 20:42:36 +0000
commit23734923dbc7b87fbea99d629ae959eed852deb9 (patch)
tree223bfdf9183588a808b3f4d940cd7c9557225fa5
parent7e74460c9a781ec7dc08cc2d3a2341baf0435e2b (diff)
downloadlibxslt-23734923dbc7b87fbea99d629ae959eed852deb9.tar.gz
Fix some misleading indentation
Found by Coverity. https://bugzilla.redhat.com/show_bug.cgi?id=1938808
-rw-r--r--win32/configure.js2
1 files changed, 1 insertions, 1 deletions
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";