const parameter fix by Ondrej
authorStefan Behnel <scoder@users.berlios.de>
Sat, 6 Sep 2008 08:26:00 +0000 (10:26 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 6 Sep 2008 08:26:00 +0000 (10:26 +0200)
Cython/Compiler/Nodes.py

index 300933caa1b2259148745ace99750e0e2c5ffb74..2008f92180146e8e9d629324ac32e55dee9b0200 100644 (file)
@@ -4364,9 +4364,12 @@ static void __Pyx_ReRaise(void) {
 
 arg_type_test_utility_code = [
 """
-static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, char *name, int exact); /*proto*/
+static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed,
+    const char *name, int exact); /*proto*/
 ""","""
-static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, char *name, int exact) {
+static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed,
+    const char *name, int exact)
+{
     if (!type) {
         PyErr_Format(PyExc_SystemError, "Missing type object");
         return 0;