From 81d6db8265316b7f0d642dc4306c93c633f0b548 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Wed, 21 Nov 2007 16:22:29 +0000 Subject: [PATCH] Test for U and u instead of two times U in parse_integer_suffix(). [r18507] --- lexer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lexer.c b/lexer.c index a74d77c..73dd134 100644 --- a/lexer.c +++ b/lexer.c @@ -266,7 +266,7 @@ end_symbol: static void parse_integer_suffix(void) { - if(c == 'U' || c == 'U') { + if(c == 'U' || c == 'u') { next_char(); if(c == 'L' || c == 'l') { next_char(); -- 2.20.1