diff options
author | Barry Warsaw <barry@python.org> | 2001-01-22 04:35:57 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-01-22 04:35:57 (GMT) |
commit | 174e8018c4da9a44749a711dc3300b405223c69f (patch) | |
tree | 793088a9f5067a8f16b2539743917c46f015577c /Python | |
parent | 90cecee894f47efb1240c2e7021d0b099ea7944f (diff) | |
download | cpython-174e8018c4da9a44749a711dc3300b405223c69f.zip cpython-174e8018c4da9a44749a711dc3300b405223c69f.tar.gz cpython-174e8018c4da9a44749a711dc3300b405223c69f.tar.bz2 |
com_init(): My entry into the smallest patch possible category.
(cosmetic whitespace change).
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 87b236a..6ca777e 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -575,7 +575,7 @@ com_init(struct compiling *c, char *filename) c->c_firstlineno = 0; c->c_last_addr = 0; c->c_last_line = 0; - c-> c_lnotab_next = 0; + c->c_lnotab_next = 0; c->c_tmpname = 0; c->c_symtable = NULL; return 1; |