From: Guido van Rossum Date: Fri, 14 Feb 1997 21:00:50 +0000 (+0000) Subject: Add parentheses around && within || as gcc -Wall advises. X-Git-Tag: v1.5a1~363 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=129e91aa77b22db1637e9f6db9e081a4a0c9f2a1;p=thirdparty%2FPython%2Fcpython.git Add parentheses around && within || as gcc -Wall advises. --- diff --git a/Modules/main.c b/Modules/main.c index 19c3e1dc786c..427b19b61f18 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());