diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-26 19:06:05 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-26 19:06:05 +0100 |
commit | 1e87b97da62ea20dbf72f7507f09cf1a8a66a35f (patch) | |
tree | 84a385414bf82c1beb4d4278549b5765e819174c /miscutils/bc.c | |
parent | 2f7352b4f5d9d319de03b7bce2b877e2be90e8c3 (diff) | |
download | busybox-w32-1e87b97da62ea20dbf72f7507f09cf1a8a66a35f.tar.gz busybox-w32-1e87b97da62ea20dbf72f7507f09cf1a8a66a35f.tar.bz2 busybox-w32-1e87b97da62ea20dbf72f7507f09cf1a8a66a35f.zip |
bc: fix "dc only" build
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-rw-r--r-- | miscutils/bc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 2237a41b5..47cde7080 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -3559,7 +3559,7 @@ static void bc_parse_reset(void) | |||
3559 | 3559 | ||
3560 | static void bc_parse_free(void) | 3560 | static void bc_parse_free(void) |
3561 | { | 3561 | { |
3562 | BcParse *p = &G.prs; | 3562 | IF_BC(BcParse *p = &G.prs;) |
3563 | IF_BC(bc_vec_free(&p->exits);) | 3563 | IF_BC(bc_vec_free(&p->exits);) |
3564 | IF_BC(bc_vec_free(&p->conds);) | 3564 | IF_BC(bc_vec_free(&p->conds);) |
3565 | IF_BC(bc_vec_free(&p->ops);) | 3565 | IF_BC(bc_vec_free(&p->ops);) |