bc: reduce indentation, no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2018-12-26 19:24:15 +01:00
parent 8a56e3643f
commit 1c69ec1597

View File

@ -3559,10 +3559,9 @@ static void bc_parse_reset(void)
static void bc_parse_free(void)
{
IF_BC(BcParse *p = &G.prs;)
IF_BC(bc_vec_free(&p->exits);)
IF_BC(bc_vec_free(&p->conds);)
IF_BC(bc_vec_free(&p->ops);)
IF_BC(bc_vec_free(&G.prs.exits);)
IF_BC(bc_vec_free(&G.prs.conds);)
IF_BC(bc_vec_free(&G.prs.ops);)
bc_vec_free(&G.prs.lex_strnumbuf);
}
@ -3571,7 +3570,7 @@ static void bc_parse_create(size_t fidx)
BcParse *p = &G.prs;
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->conds, sizeof(size_t), NULL);)
IF_BC(bc_vec_init(&p->ops, sizeof(BcLexType), NULL);)