Kill two innocuous compiler warnings.
diff --git a/Objects/bufferobject.c b/Objects/bufferobject.c
index f635960..eb02e32 100644
--- a/Objects/bufferobject.c
+++ b/Objects/bufferobject.c
@@ -433,7 +433,8 @@
 
         if (PyUnicode_Check(other)) {
 		/* XXX HACK */
-		if ( (count = (*pb->bf_getcharbuffer)(other, 0, &ptr2)) < 0 )
+		if ( (count = (*pb->bf_getcharbuffer)(other, 0,
+                                                      (char **)&ptr2)) < 0 )
 			return NULL;
 	}
 	else {
diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c
index 82eabf1..f188515 100644
--- a/Objects/moduleobject.c
+++ b/Objects/moduleobject.c
@@ -59,7 +59,6 @@
 {
 	PyObject *d;
 	PyObject *nameobj;
-	char *s;
 	if (!PyModule_Check(m)) {
 		PyErr_BadArgument();
 		return NULL;