summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/interpr5.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-02-24 18:19:35 +0100
committerEike Rathke <erack@redhat.com>2017-02-24 18:19:45 +0100
commit9f77a73e2da7da51b318699c477aa071c0b8c324 (patch)
treef2a89c9ac055cb7bb1ddc52a2267eabd4ba91e0c /sc/source/core/tool/interpr5.cxx
parent7c6902cf8f19fc944c6d9e66cdb27887961301a5 (diff)
grml.. and do that right
Change-Id: I71bc423bde1f7df576175120741c8a08100b08dd
Diffstat (limited to 'sc/source/core/tool/interpr5.cxx')
-rw-r--r--sc/source/core/tool/interpr5.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx
index 1fba10b06049..efd1029e0dd5 100644
--- a/sc/source/core/tool/interpr5.cxx
+++ b/sc/source/core/tool/interpr5.cxx
@@ -759,7 +759,7 @@ static void lcl_LUP_solve( const ScMatrix* mLU, const SCSIZE n,
fSum -= mLU->GetDouble( j, i) * X[j]; // X[j] === x[j]
X[i] = fSum / mLU->GetDouble( i, i); // X[i] === x[i]
}
-#if DEBUG_SC_LUP_DECOMPOSITION
+#ifdef DEBUG_SC_LUP_DECOMPOSITION
fprintf( stderr, "\n%s\n", "lcl_LUP_solve():");
for (SCSIZE i=0; i < n; ++i)
fprintf( stderr, "%8.2g ", X[i]);