Issue #9738: Ooops, fix typos in my previous commit (r87506)
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 1f79efd..4d2a8e4 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -443,7 +443,7 @@
 
 /* Similar to PyUnicode_FromUnicode(), but u points to UTF-8 encoded bytes */
 PyAPI_FUNC(PyObject*) PyUnicode_FromStringAndSize(
-    const char *u              /* UTF-8 encoded string */
+    const char *u,             /* UTF-8 encoded string */
     Py_ssize_t size            /* size of buffer */
     );