mirror of
https://github.com/python/cpython.git
synced 2025-11-26 21:33:10 +00:00
Fix another error on AIX by using a proper cast.
This commit is contained in:
parent
9a15c211cf
commit
276fa43faf
1 changed files with 2 additions and 2 deletions
|
|
@ -356,11 +356,11 @@ initsignal()
|
||||||
/* Add some symbolic constants to the module */
|
/* Add some symbolic constants to the module */
|
||||||
d = PyModule_GetDict(m);
|
d = PyModule_GetDict(m);
|
||||||
|
|
||||||
x = DefaultHandler = PyLong_FromVoidPtr(SIG_DFL);
|
x = DefaultHandler = PyLong_FromVoidPtr((void *)SIG_DFL);
|
||||||
if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0)
|
if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0)
|
||||||
goto finally;
|
goto finally;
|
||||||
|
|
||||||
x = IgnoreHandler = PyLong_FromVoidPtr(SIG_IGN);
|
x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN);
|
||||||
if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0)
|
if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0)
|
||||||
goto finally;
|
goto finally;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue