put * in the normal place
diff --git a/Python/ast.c b/Python/ast.c
index d2bf032..4ae9d75 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -47,9 +47,9 @@
 #define COMP_SETCOMP  2
 
 static identifier
-new_identifier(const char* n, PyArena *arena)
+new_identifier(const char *n, PyArena *arena)
 {
-    PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
+    PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
     Py_UNICODE *u;
     if (!id)
         return NULL;