From: Michael Beck Date: Wed, 12 Dec 2007 01:37:58 +0000 (+0000) Subject: removed superfluous & X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=d8d27b747100f1ca0e6250bc6f3f8191f42d349f;p=cparser removed superfluous & [r18691] --- diff --git a/parser.c b/parser.c index d34696a..9ec1656 100644 --- a/parser.c +++ b/parser.c @@ -4989,7 +4989,7 @@ static statement_t *parse_switch(void) expect(')'); switch_statement_t *rem = current_switch; - current_switch = &statement; + current_switch = statement; statement->body = parse_statement(); current_switch = rem;