Initialize a variable.  Hope this makes things work for Guido.

It's odd that gcc on my ibook didn't complain about this.
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 995d85f..a5779ef 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -146,7 +146,7 @@
 {
 	PyTypeObject *subclass;
 	PyObject *ref, *subclasses, *old_mro;
-	int i, n, r;
+	int i, n, r = 0;
 
 	subclasses = type->tp_subclasses;
 	if (subclasses == NULL)