bc: reduce indentation, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
8a56e3643f
commit
1c69ec1597
@ -3559,10 +3559,9 @@ static void bc_parse_reset(void)
|
|||||||
|
|
||||||
static void bc_parse_free(void)
|
static void bc_parse_free(void)
|
||||||
{
|
{
|
||||||
IF_BC(BcParse *p = &G.prs;)
|
IF_BC(bc_vec_free(&G.prs.exits);)
|
||||||
IF_BC(bc_vec_free(&p->exits);)
|
IF_BC(bc_vec_free(&G.prs.conds);)
|
||||||
IF_BC(bc_vec_free(&p->conds);)
|
IF_BC(bc_vec_free(&G.prs.ops);)
|
||||||
IF_BC(bc_vec_free(&p->ops);)
|
|
||||||
bc_vec_free(&G.prs.lex_strnumbuf);
|
bc_vec_free(&G.prs.lex_strnumbuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3571,7 +3570,7 @@ static void bc_parse_create(size_t fidx)
|
|||||||
BcParse *p = &G.prs;
|
BcParse *p = &G.prs;
|
||||||
memset(p, 0, sizeof(BcParse));
|
memset(p, 0, sizeof(BcParse));
|
||||||
|
|
||||||
bc_char_vec_init(&G.prs.lex_strnumbuf);
|
bc_char_vec_init(&p->lex_strnumbuf);
|
||||||
IF_BC(bc_vec_init(&p->exits, sizeof(size_t), NULL);)
|
IF_BC(bc_vec_init(&p->exits, sizeof(size_t), NULL);)
|
||||||
IF_BC(bc_vec_init(&p->conds, sizeof(size_t), NULL);)
|
IF_BC(bc_vec_init(&p->conds, sizeof(size_t), NULL);)
|
||||||
IF_BC(bc_vec_init(&p->ops, sizeof(BcLexType), NULL);)
|
IF_BC(bc_vec_init(&p->ops, sizeof(BcLexType), NULL);)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user