summaryrefslogtreecommitdiffstats
path: root/PC/_winreg.c
diff options
context:
space:
mode:
Diffstat (limited to 'PC/_winreg.c')
-rw-r--r--PC/_winreg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/_winreg.c b/PC/_winreg.c
index 0648802..07190ec 100644
--- a/PC/_winreg.c
+++ b/PC/_winreg.c
@@ -606,7 +606,7 @@ PyHKEY_FromHKEY(HKEY h)
{
PyHKEYObject *op;
- /* PyObject_New is inlined */
+ /* Inline PyObject_New */
op = (PyHKEYObject *) PyObject_MALLOC(sizeof(PyHKEYObject));
if (op == NULL)
return PyErr_NoMemory();