summaryrefslogtreecommitdiff
path: root/Python/frozenmain.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-11-05 10:16:09 +0000
committerGuido van Rossum <guido@python.org>1993-11-05 10:16:09 +0000
commit43517282a0d74ca9ce057a519ada288f9b26d667 (patch)
tree4f042559b384d714bbfae874d1ac53bce15c3df5 /Python/frozenmain.c
parent44a4e2fde95bd7250dfefa93e8d91451396029bf (diff)
downloadcpython-43517282a0d74ca9ce057a519ada288f9b26d667.tar.gz
Must initialize 'inspect' flag
Diffstat (limited to 'Python/frozenmain.c')
-rw-r--r--Python/frozenmain.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/frozenmain.c b/Python/frozenmain.c
index 2aee24941c..8f35ea5b92 100644
--- a/Python/frozenmain.c
+++ b/Python/frozenmain.c
@@ -37,7 +37,8 @@ main(argc, argv)
char **argv;
{
char *p;
- int n, inspect, sts;
+ int n, sts;
+ int inspect = 0;
if ((p = getenv("PYTHONDEBUG")) && *p != '\0')
debugging = 1;