Commit 2c278ed4 authored by Jack Jansen's avatar Jack Jansen

Fixed another case of the PyArg_Parse 'h' semantic change problem, sigh...

parent fd4ff52c
......@@ -1082,7 +1082,7 @@ PyMac_BuildPoint(Point p)
int
PyMac_GetEventRecord(PyObject *v, EventRecord *e)
{
return PyArg_Parse(v, "(hll(hh)h)",
return PyArg_Parse(v, "(Hll(hh)H)",
&e->what,
&e->message,
&e->when,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment