From: Christoph Mallon Date: Sun, 1 Jun 2008 13:47:30 +0000 (+0000) Subject: Fix typo in parse_alignof(): s/EXPR_SIZEOF/EXPR_ALIGNOF/. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=76cd85186add9bdc3ce08d6e5ae87c5e1f487e08;p=cparser Fix typo in parse_alignof(): s/EXPR_SIZEOF/EXPR_ALIGNOF/. [r19901] --- diff --git a/parser.c b/parser.c index b9f6865..3f0308a 100644 --- a/parser.c +++ b/parser.c @@ -5671,7 +5671,7 @@ static expression_t *parse_sizeof(unsigned precedence) static expression_t *parse_alignof(unsigned precedence) { eat(T___alignof__); - return parse_typeprop(EXPR_SIZEOF, precedence); + return parse_typeprop(EXPR_ALIGNOF, precedence); } static expression_t *parse_select_expression(unsigned precedence,