summaryrefslogtreecommitdiff
path: root/Python/frozenmain.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-15 02:52:08 +0000
committerGuido van Rossum <guido@python.org>1997-08-15 02:52:08 +0000
commit68d63ebdbeaa456f59ff96989f8647c4bdf7392f (patch)
treef096a587c4ddb3899c35b67ba3bac28500897126 /Python/frozenmain.c
parent7ee820e7d18599ef9a97728c459d827fb4ce88b8 (diff)
downloadcpython-68d63ebdbeaa456f59ff96989f8647c4bdf7392f.tar.gz
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 d5a398b075..755033c9ba 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;
}