Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 129e91a

Browse files
committed
Add parentheses around && within || as gcc -Wall advises.
1 parent 2dc4661 commit 129e91a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ main(argc, argv)
205205
}
206206

207207
if (Py_VerboseFlag ||
208-
command == NULL && filename == NULL && stdin_is_interactive)
208+
(command == NULL && filename == NULL && stdin_is_interactive))
209209
fprintf(stderr, "Python %s\n%s\n",
210210
Py_GetVersion(), Py_GetCopyright());
211211

0 commit comments

Comments
 (0)