Shut up a compiler warning.
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index ed0b8be..634a753 100644
--- a/Objects/complexobject.c
+++ b/Objects/complexobject.c
@@ -1003,6 +1003,7 @@
 			return NULL;
 		}
 		cr.real = PyFloat_AsDouble(tmp);
+                cr.imag = 0.0; /* Shut up compiler warning */
 		Py_DECREF(tmp);
 	}
 	if (i == NULL) {