summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-02-14 21:12:56 (GMT)
committerGuido van Rossum <guido@python.org>1997-02-14 21:12:56 (GMT)
commit0f4bbd2f34dab045a8c3eed6413aea770f545d8c (patch)
tree738e21fd7ee84f27b854f0378967a86c7c092670 /Python/marshal.c
parentbae95189b0e391cfb57019e503ab9d553786691f (diff)
downloadcpython-0f4bbd2f34dab045a8c3eed6413aea770f545d8c.zip
cpython-0f4bbd2f34dab045a8c3eed6413aea770f545d8c.tar.gz
cpython-0f4bbd2f34dab045a8c3eed6413aea770f545d8c.tar.bz2
Keep gcc -Wall happy.
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index cd898b2..0ad493a 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -522,7 +522,7 @@ r_object(p)
object *varnames = NULL;
object *filename = NULL;
object *name = NULL;
- int firstlineno;
+ int firstlineno = 0;
object *lnotab = NULL;
code = r_object(p);