Keep gcc -Wall happy.

This commit is contained in:
Guido van Rossum 1997-02-14 21:12:56 +00:00
parent bae95189b0
commit 0f4bbd2f34
2 changed files with 3 additions and 3 deletions

View file

@ -82,9 +82,9 @@ PyCObject_Import(module_name, name)
PyObject *m, *c;
void *r=NULL;
if(m=PyImport_ImportModule(module_name))
if((m=PyImport_ImportModule(module_name)))
{
if(c=PyObject_GetAttrString(m,name))
if((c=PyObject_GetAttrString(m,name)))
{
r=PyCObject_AsVoidPtr(c);
Py_DECREF(c);