Commit a99e3f94 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

style: Whitespace OCD

parent 90623cc5
......@@ -238,22 +238,26 @@ const struct symxref XREF_REF[1] = {{"xref_ref"}};
const struct symmode SYMTAB_NOERR[1] = {{
.name = "sym_noerror",
.noerr = 1
}};
}};
const struct symmode SYMTAB_CREATE[1] = {{
.name = "sym_create"
}};
}};
const struct symmode SYMTAB_EXISTING[1] = {{
.name = "Symbol not found"
}};
}};
const struct symmode SYMTAB_PARTIAL[1] = {{
.name = "Symbol not found",
.partial = 1
}};
}};
const struct symmode SYMTAB_PARTIAL_NOERR[1] = {{
.name = "Symbol not found",
.partial = 1,
.noerr = 1
}};
}};
struct symbol *
VCC_SymbolGet(struct vcc *tl, vcc_ns_t ns, vcc_kind_t kind,
......
......@@ -245,7 +245,7 @@ xyzzy_test_priv_ ## name ## _methods[1] = {{ \
.magic = VMOD_PRIV_METHODS_MAGIC, \
.type = "debug_test_priv_" #name, \
.fini = priv_ ## name ## _fini \
}};
}};
PRIV_FINI(call, 0)
PRIV_FINI(task, 1)
PRIV_FINI(top, 1)
......
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