summaryrefslogtreecommitdiffstats
path: root/Parser/pgen.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-04-10 22:09:39 (GMT)
committerGuido van Rossum <guido@python.org>1998-04-10 22:09:39 (GMT)
commitbb3649e2ba386adc16fadc2e0d1f2606c047e6aa (patch)
treebb7c6cd55bbc107f3963ff8438a04b9845f2d52a /Parser/pgen.c
parent39b0f8976caeb81e475454424f2a8d6e39609f52 (diff)
downloadcpython-bb3649e2ba386adc16fadc2e0d1f2606c047e6aa.zip
cpython-bb3649e2ba386adc16fadc2e0d1f2606c047e6aa.tar.gz
cpython-bb3649e2ba386adc16fadc2e0d1f2606c047e6aa.tar.bz2
Make new gcc -Wall happy
Diffstat (limited to 'Parser/pgen.c')
-rw-r--r--Parser/pgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/pgen.c b/Parser/pgen.c
index 4b2acb8..f2adae9 100644
--- a/Parser/pgen.c
+++ b/Parser/pgen.c
@@ -112,7 +112,7 @@ newnfa(name)
char *name;
{
nfa *nf;
- static type = NT_OFFSET; /* All types will be disjunct */
+ static int type = NT_OFFSET; /* All types will be disjunct */
nf = PyMem_NEW(nfa, 1);
if (nf == NULL)