From 8af11087b20e2e9d19836a070ea460b7bec82a8f Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 26 Dec 2018 21:01:41 +0100 Subject: bc: undo debugging change, add a small optimization Signed-off-by: Denys Vlasenko --- miscutils/bc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'miscutils/bc.c') diff --git a/miscutils/bc.c b/miscutils/bc.c index cf04e9ff1..af94981ec 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -3016,7 +3016,7 @@ static BC_STATUS zbc_lex_string(void) for (;;) { char c = peek_inbuf(); // strings can cross lines if (c == '\0') { - RETURN_STATUS(bc_error("unterminated string1")); + RETURN_STATUS(bc_error("unterminated string")); } if (c == '"') break; @@ -3060,7 +3060,7 @@ static BC_STATUS zbc_lex_comment(void) check_star: if (c == '*') { p->lex_inbuf++; - c = peek_inbuf(); + c = *p->lex_inbuf; // no need to peek_inbuf() if (c == '/') break; goto check_star; -- cgit v1.2.3