summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'Modules')
-rw-r--r--Modules/signalmodule.c2
1 files changed, 1 insertions, 1 deletions
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 @@ 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