Commit 7f2cd24b authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix indentation in emitted C code

parent 0f80514b
......@@ -262,10 +262,12 @@ parse_ban(struct vcc *tl)
ExpectErr(tl, '(');
vcc_NextToken(tl);
Fb(tl, 1, "VRT_ban_string(");
Fb(tl, 1, "VRT_ban_string(\n");
tl->indent += INDENT;
vcc_Expr(tl, STRING);
tl->indent -= INDENT;
ERRCHK(tl);
Fb(tl, 0, ");\n");
Fb(tl, 1, ");\n");
ExpectErr(tl, ')');
vcc_NextToken(tl);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment