diff options
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; } |