commit | 4178515035af42b6343bcd3e5df92d052c6f13dd | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Thu Jun 13 21:42:51 2002 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Thu Jun 13 21:42:51 2002 +0000 |
tree | f0020d7d952dae622b0b9e0245d112ad519513b9 | |
parent | e7b8ecf196f5d20eb9189fb9930335a2bebe1cc7 [diff] |
SF # 533070 Silence AIX C Compiler Warnings Warning caused by using &func. & is not necessary.
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 395e654..240e9a9 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c
@@ -522,7 +522,7 @@ 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