Minor indentation fix

This commit is contained in:
Benny Baumann 2020-11-20 08:07:56 +01:00 committed by BenBE
parent f0a232568f
commit 45cb99d870
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ void Process_writeField(const Process* this, RichString* str, ProcessField field
} }
} }
for (int i = 0; i < maxIndent - 1; i++) { for (int i = 0; i < maxIndent - 1; i++) {
int written, ret; int written, ret;
if (indent & (1 << i)) { if (indent & (1 << i)) {
ret = snprintf(buf, n, "%s ", CRT_treeStr[TREE_STR_VERT]); ret = snprintf(buf, n, "%s ", CRT_treeStr[TREE_STR_VERT]);