cosmetic: fix code style, most importantly indention

This commit is contained in:
Rainer Gerhards 2017-10-19 12:31:04 +02:00
parent 9dab121f7b
commit adec568655

View File

@ -3134,8 +3134,7 @@ cnfstmtPrintOnly(struct cnfstmt *stmt, int indent, sbool subtree)
}
break;
case S_FOREACH:
doIndent(indent); dbgprintf("FOREACH %s IN\n",
stmt->d.s_foreach.iter->var);
doIndent(indent); dbgprintf("FOREACH %s IN\n", stmt->d.s_foreach.iter->var);
cnfexprPrint(stmt->d.s_foreach.iter->collection, indent+1);
if(subtree) {
doIndent(indent); dbgprintf("DO\n");
@ -3154,7 +3153,8 @@ cnfstmtPrintOnly(struct cnfstmt *stmt, int indent, sbool subtree)
stmt->d.s_unset.varname);
break;
case S_RELOAD_LOOKUP_TABLE:
doIndent(indent); dbgprintf("RELOAD_LOOKUP_TABLE table(%s) (stub with '%s' on error)",
doIndent(indent);
dbgprintf("RELOAD_LOOKUP_TABLE table(%s) (stub with '%s' on error)",
stmt->d.s_reload_lookup_table.table_name,
stmt->d.s_reload_lookup_table.stub_value);
break;