diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-21 00:39:02 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-21 00:39:02 +0100 |
commit | 447dc02c2759e8c965dfcb3280b335b49a8c3a61 (patch) | |
tree | bb6dc311b1d303703a08c0c12f73dad62c57af54 /miscutils/bc.c | |
parent | 52caa007e3f32225b6cd9f899480362c4563b023 (diff) | |
download | busybox-w32-447dc02c2759e8c965dfcb3280b335b49a8c3a61.tar.gz busybox-w32-447dc02c2759e8c965dfcb3280b335b49a8c3a61.tar.bz2 busybox-w32-447dc02c2759e8c965dfcb3280b335b49a8c3a61.zip |
bc: fix comment
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 e7983f38d..05dbd62f6 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -4206,7 +4206,7 @@ static BC_STATUS zbc_parse_for(BcParse *p) | |||
4206 | if (p->l.t.t != BC_LEX_SCOLON) | 4206 | if (p->l.t.t != BC_LEX_SCOLON) |
4207 | s = zbc_parse_expr(p, BC_PARSE_REL); | 4207 | s = zbc_parse_expr(p, BC_PARSE_REL); |
4208 | else { | 4208 | else { |
4209 | // Set this for the next call to bc_parse_number. | 4209 | // Set this for the next call to bc_parse_pushNUM(). |
4210 | // This is safe to set because the current token is a semicolon, | 4210 | // This is safe to set because the current token is a semicolon, |
4211 | // which has no string requirement. | 4211 | // which has no string requirement. |
4212 | bc_vec_string(&p->l.t.v, 1, "1"); | 4212 | bc_vec_string(&p->l.t.v, 1, "1"); |