mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
SF # 533070 Silence AIX C Compiler Warnings
Warning caused by using &func. & is not necessary.
This commit is contained in:
parent
e7b8ecf196
commit
4178515035
2 changed files with 2 additions and 2 deletions
|
@ -522,7 +522,7 @@ initsignal(void)
|
|||
Py_INCREF(IntHandler);
|
||||
Py_DECREF(Handlers[SIGINT].func);
|
||||
Handlers[SIGINT].func = IntHandler;
|
||||
old_siginthandler = PyOS_setsig(SIGINT, &signal_handler);
|
||||
old_siginthandler = PyOS_setsig(SIGINT, signal_handler);
|
||||
}
|
||||
|
||||
#ifdef SIGHUP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue