summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Modules/signalmodule.c2
-rw-r--r--Objects/object.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c
index 1053cf1..b683352 100644
--- a/Modules/signalmodule.c
+++ b/Modules/signalmodule.c
@@ -366,7 +366,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
diff --git a/Objects/object.c b/Objects/object.c
index 5564eef..510ea73 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1884,7 +1884,7 @@ PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
/* Hack to force loading of abstract.o */
-int (*_Py_abstract_hack)(PyObject *) = &PyObject_Size;
+int (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
/* Python's malloc wrappers (see pymem.h) */