summaryrefslogtreecommitdiffstats
path: root/Python/frozenmain.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-15 02:52:08 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-15 02:52:08 (GMT)
commit7c14103d77e02f3ee66d39d15fda6090ab2965f7 (patch)
tree00a62840f6ed995a8d8824cc45515caa3c3a946c /Python/frozenmain.c
parentf0b69f01eba87dcd56b9ed0a5be2fd7149f20b7a (diff)
downloadcpython-7c14103d77e02f3ee66d39d15fda6090ab2965f7.zip
cpython-7c14103d77e02f3ee66d39d15fda6090ab2965f7.tar.gz
cpython-7c14103d77e02f3ee66d39d15fda6090ab2965f7.tar.bz2
Keep gcc -Wall happy
Diffstat (limited to 'Python/frozenmain.c')
-rw-r--r--Python/frozenmain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/frozenmain.c b/Python/frozenmain.c
index d5a398b..755033c 100644
--- a/Python/frozenmain.c
+++ b/Python/frozenmain.c
@@ -77,6 +77,6 @@ Py_FrozenMain(argc, argv)
if (inspect && isatty((int)fileno(stdin)))
sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
- Py_Exit(sts);
- /*NOTREACHED*/
+ Py_Finalize();
+ return sts;
}