Commit 31ab6881 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

vcc: Avoid magic indentation numbers

parent c348aa5c
......@@ -253,8 +253,8 @@ vcc_expr_fmt(struct vsb *d, int ind, const struct expr *e1)
VSB_putc(d, *p++);
} else {
switch (*++p) {
case '+': ind += 2; break;
case '-': ind -= 2; break;
case '+': ind += INDENT; break;
case '-': ind -= INDENT; break;
default: WRONG("Illegal format in VCC expression");
}
p++;
......
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