commit | da9c2710c728407f47f34635a75647c56a9ec106 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Dec 05 21:58:58 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Dec 05 21:58:58 1996 +0000 |
tree | b8248e8ba3432a2d4b4fc4034214a60b2b96cf9d | |
parent | 472c04f18f54327433c13601b25c7ea2c7071e6b [diff] [blame] |
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;