summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/bufferobject.c3
-rw-r--r--Objects/moduleobject.c1
2 files changed, 2 insertions, 2 deletions
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 @@ buffer_concat(PyBufferObject *self, PyObject *other)
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 @@ PyModule_GetName(PyObject *m)
{
PyObject *d;
PyObject *nameobj;
- char *s;
if (!PyModule_Check(m)) {
PyErr_BadArgument();
return NULL;