From: Denys Vlasenko Date: Thu, 20 Dec 2018 23:39:02 +0000 (+0100) Subject: bc: fix comment X-Git-Tag: 1_30_0~85 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=447dc02c2759e8c965dfcb3280b335b49a8c3a61;p=oweals%2Fbusybox.git bc: fix comment Signed-off-by: Denys Vlasenko --- 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) if (p->l.t.t != BC_LEX_SCOLON) s = zbc_parse_expr(p, BC_PARSE_REL); else { - // Set this for the next call to bc_parse_number. + // Set this for the next call to bc_parse_pushNUM(). // This is safe to set because the current token is a semicolon, // which has no string requirement. bc_vec_string(&p->l.t.v, 1, "1");