diff options
author | ZeroC Staff <git@zeroc.com> | 2001-07-25 19:57:43 +0000 |
---|---|---|
committer | ZeroC Staff <git@zeroc.com> | 2001-07-25 19:57:43 +0000 |
commit | 897f9eed9f511444d7376e60a9b69c2fb546fc34 (patch) | |
tree | 509346dc9adc493aedcdee60698d6b21b221e4bd /cpp/src/Slice/OutputUtil.cpp | |
parent | added support for spaces, variable block start/end text and variable indent (diff) | |
download | ice-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.cpp | 2 |
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; } |