Make gcc -Wall happy
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index ae18331..9d80e1f 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -154,7 +154,7 @@
 	if ((back != NULL && !is_frameobject(back)) ||
 		code == NULL || !is_codeobject(code) ||
 		globals == NULL || !is_dictobject(globals) ||
-		locals != NULL && !is_dictobject(locals) ||
+		(locals != NULL && !is_dictobject(locals)) ||
 		nvalues < 0 || nblocks < 0) {
 		err_badcall();
 		return NULL;