summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2017-05-22 13:16:32 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2017-05-22 13:16:32 +0200
commitf53406d82865ad2807e0891ddae1d839a7622fce (patch)
tree3cf971650d85ece4e66fa56d6b05aea373b3fbf5
parent1714312d072179b74306c927b25bd01b5056bdf1 (diff)
downloadastra-f53406d82865ad2807e0891ddae1d839a7622fce.tar.gz
astra-f53406d82865ad2807e0891ddae1d839a7622fce.tar.bz2
astra-f53406d82865ad2807e0891ddae1d839a7622fce.tar.xz
astra-f53406d82865ad2807e0891ddae1d839a7622fce.zip
Fix misleading indentation
-rw-r--r--src/XMLNode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/XMLNode.cpp b/src/XMLNode.cpp
index 35f8093..3b7237f 100644
--- a/src/XMLNode.cpp
+++ b/src/XMLNode.cpp
@@ -414,8 +414,8 @@ static std::string setContentMatrix_internal(T* _pfMatrix, int _iWidth, int _iHe
for (int y = 0; y < _iHeight; ++y) {
if (_iWidth > 0)
str += StringUtil::toString(_pfMatrix[0*s1 + y*s2]);
- for (int x = 1; x < _iWidth; x++)
- str += "," + StringUtil::toString(_pfMatrix[x*s1 + y*s2]);
+ for (int x = 1; x < _iWidth; x++)
+ str += "," + StringUtil::toString(_pfMatrix[x*s1 + y*s2]);
if (y != _iHeight-1)
str += ";";