summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/OutputUtil.cpp
diff options
context:
space:
mode:
authorZeroC Staff <git@zeroc.com>2001-07-25 19:57:43 +0000
committerZeroC Staff <git@zeroc.com>2001-07-25 19:57:43 +0000
commit897f9eed9f511444d7376e60a9b69c2fb546fc34 (patch)
tree509346dc9adc493aedcdee60698d6b21b221e4bd /cpp/src/Slice/OutputUtil.cpp
parentadded support for spaces, variable block start/end text and variable indent (diff)
downloadice-897f9eed9f511444d7376e60a9b69c2fb546fc34.tar.bz2
ice-897f9eed9f511444d7376e60a9b69c2fb546fc34.tar.xz
ice-897f9eed9f511444d7376e60a9b69c2fb546fc34.zip
sorry, missed one
Diffstat (limited to 'cpp/src/Slice/OutputUtil.cpp')
-rw-r--r--cpp/src/Slice/OutputUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/OutputUtil.cpp b/cpp/src/Slice/OutputUtil.cpp
index dbf20e5ac61..62087791327 100644
--- a/cpp/src/Slice/OutputUtil.cpp
+++ b/cpp/src/Slice/OutputUtil.cpp
@@ -154,7 +154,7 @@ Slice::Output::nl()
{
while(indent >= _indentSize)
{
- indent -= indentSize;
+ indent -= _indentSize;
out_ << " ";
pos_ += _indentSize;
}