diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-17 00:15:35 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-17 00:15:35 +0100 |
commit | 51b22b1bce7c7bf656897ee38c409aa0abd64403 (patch) | |
tree | 11afd3ee2ab52fc750728279b48bb7f17ec109e9 /miscutils/bc.c | |
parent | 94f72a387c13e4620635ee47ec7c5aa6bbbb473c (diff) | |
download | busybox-w32-51b22b1bce7c7bf656897ee38c409aa0abd64403.tar.gz busybox-w32-51b22b1bce7c7bf656897ee38c409aa0abd64403.tar.bz2 busybox-w32-51b22b1bce7c7bf656897ee38c409aa0abd64403.zip |
bc: fix typo: defone -> define
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/bc.c')
-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 9f23a0601..24d1ebba6 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -3678,7 +3678,7 @@ static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next); | |||
3678 | static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next); | 3678 | static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next); |
3679 | #if ERRORS_ARE_FATAL | 3679 | #if ERRORS_ARE_FATAL |
3680 | # define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS) | 3680 | # define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS) |
3681 | # defone zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__), BC_STATUS_SUCCESS) | 3681 | # define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__), BC_STATUS_SUCCESS) |
3682 | #endif | 3682 | #endif |
3683 | 3683 | ||
3684 | static BC_STATUS zbc_parse_stmt(BcParse *p) | 3684 | static BC_STATUS zbc_parse_stmt(BcParse *p) |