diff options
author | Denys Vlasenko | 2018-12-26 19:09:23 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-12-26 19:09:23 +0100 |
commit | 8a56e3643f83770ba92255ca5c576c20e645617f (patch) | |
tree | e9b3824fa3c5c226380806cfe67030c694940f94 | |
parent | 1e87b97da62ea20dbf72f7507f09cf1a8a66a35f (diff) | |
download | busybox-8a56e3643f83770ba92255ca5c576c20e645617f.zip busybox-8a56e3643f83770ba92255ca5c576c20e645617f.tar.gz |
bc: fix "bc only" build
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 47cde70..0e5f26c 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -6808,7 +6808,7 @@ static BC_STATUS zbc_vm_process(const char *text) bc_vec_pop_all(&f->code); ip->inst_idx = 0; } - done: + IF_DC(done:) dbg_lex_done("%s:%d done", __func__, __LINE__); RETURN_STATUS(s); } |