shithub: scc

Download patch

ref: 5cd22f4402bc8e5ca8fd4c82740beafaab5f68c3
parent: 7acf1e8d391b8fea1b65700aa30bbf7ca27cc977
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Sat Mar 8 08:59:57 EST 2014

Remove extra next() in initializer

This extra next() was consuming a valid token, so the expresion
was incorrectly parsed.

--- a/decl.c
+++ b/decl.c
@@ -307,7 +307,6 @@
 {
 	if (!accept('='))
 		return NULL;
-	next();
 	if (accept('{')) {
 		struct compound c;
 
--