diff options
author | Barry Warsaw <barry@python.org> | 2001-01-22 04:35:57 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-01-22 04:35:57 +0000 |
commit | d67ce3f2675a131c9b016ca459d6ef55819963d7 (patch) | |
tree | 045ceb2733ea092eb5fc4fcd79e093225c5dc938 /Python/compile.c | |
parent | 0b2dbe82f368f4a0cde28ee1a8b2f13a3b7c5392 (diff) | |
download | cpython-d67ce3f2675a131c9b016ca459d6ef55819963d7.tar.gz |
com_init(): My entry into the smallest patch possible category.
(cosmetic whitespace change).
Diffstat (limited to 'Python/compile.c')
-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 87b236a0b0..6ca777e5bb 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; |