From: Christoph Mallon Date: Sun, 16 Nov 2008 10:21:42 +0000 (+0000) Subject: Fix comment. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=18e573ccce0aac14e93b54b49a3e5156c52f9b85;p=cparser Fix comment. [r23703] --- diff --git a/parser.c b/parser.c index 095c010..2a05c7b 100644 --- a/parser.c +++ b/parser.c @@ -9809,8 +9809,8 @@ static statement_t *parse_goto(void) expression_t *expression = parse_expression(); mark_vars_read(expression, NULL); - /* Argh: although documentation say the expression must be of type void *, - * gcc excepts anything that can be casted into void * without error */ + /* Argh: although documentation says the expression must be of type void*, + * gcc accepts anything that can be casted into void* without error */ type_t *type = expression->base.type; if (type != type_error_type) {