aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Soroka <gits@joesoroka.com>2011-03-08 09:26:36 -0800
committerJoe Soroka <gits@joesoroka.com>2011-03-08 09:26:36 -0800
commit2d292e69a1d1bf5733242f6da28d55246b04ea17 (patch)
tree9fe2970d01e16412a44bf6b12e61049c72ae5d86
parent545a37b306c30ca5a164cbf06d6a13b8c40cbc83 (diff)
downloadtinycc-2d292e69a1d1bf5733242f6da28d55246b04ea17.tar.gz
tinycc-2d292e69a1d1bf5733242f6da28d55246b04ea17.tar.bz2
small change to previous whitespace-only commit
-rw-r--r--tccgen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tccgen.c b/tccgen.c
index 15736f0..805d501 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -3058,7 +3058,7 @@ static void post_type_args(CType *type, AttributeDef *ad)
CType pt;
/* function declaration */
- next();
+ skip('(');
l = 0;
first = NULL;
plast = &first;
@@ -3131,7 +3131,7 @@ static void post_type_array(CType *type, AttributeDef *ad)
Sym *s;
/* array definition */
- next();
+ skip('[');
if (tok == TOK_RESTRICT1)
next();
n = -1;