Fix tabs.
diff --git a/Objects/cellobject.c b/Objects/cellobject.c
index b86739e..46955ab 100644
--- a/Objects/cellobject.c
+++ b/Objects/cellobject.c
@@ -56,7 +56,7 @@
 {
 	/* Py3K warning for comparisons  */
 	if (Py_Py3kWarningFlag &&
-            PyErr_Warn(PyExc_DeprecationWarning,
+	    PyErr_Warn(PyExc_DeprecationWarning,
 		       "cell comparisons not supported in 3.x") < 0) {
 		return -2;
 	}
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index b897118..d552098 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1779,7 +1779,7 @@
 	else {
 		/* Py3K warning if comparison isn't == or !=  */
 		if (Py_Py3kWarningFlag &&
-                    PyErr_Warn(PyExc_DeprecationWarning,
+		    PyErr_Warn(PyExc_DeprecationWarning,
 			       "dict inequality comparisons not supported "
 			       "in 3.x") < 0) {
 			return NULL;