put * in the normal place
authorBenjamin Peterson <benjamin@python.org>
Sun, 2 Sep 2012 20:36:01 +0000 (16:36 -0400)
committerBenjamin Peterson <benjamin@python.org>
Sun, 2 Sep 2012 20:36:01 +0000 (16:36 -0400)
Python/ast.c

index d2bf032c50952af57fd96e85b7e240d62c0b9bdd..4ae9d75d03440aeba79dac061469b17676dd46bb 100644 (file)
@@ -47,9 +47,9 @@ static PyObject *parsestrplus(struct compiling *, const node *n,
 #define COMP_SETCOMP  2
 
 static identifier
-new_identifier(const charn, PyArena *arena)
+new_identifier(const char *n, PyArena *arena)
 {
-    PyObjectid = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
+    PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
     Py_UNICODE *u;
     if (!id)
         return NULL;