summaryrefslogtreecommitdiff
path: root/Modules/main.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-02-14 21:00:50 +0000
committerGuido van Rossum <guido@python.org>1997-02-14 21:00:50 +0000
commit68bb54a22827ef0107491df18fb0b353cf046289 (patch)
treedbc9e915987d155d5c1858b1c1ed87e48c91114a /Modules/main.c
parentc112b15fd82715e9f285886a377e6ee3acaeff5d (diff)
downloadcpython-68bb54a22827ef0107491df18fb0b353cf046289.tar.gz
Add parentheses around && within || as gcc -Wall advises.
Diffstat (limited to 'Modules/main.c')
-rw-r--r--Modules/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 19c3e1dc78..427b19b61f 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -205,7 +205,7 @@ main(argc, argv)
}
if (Py_VerboseFlag ||
- command == NULL && filename == NULL && stdin_is_interactive)
+ (command == NULL && filename == NULL && stdin_is_interactive))
fprintf(stderr, "Python %s\n%s\n",
Py_GetVersion(), Py_GetCopyright());