From 9582c148b6bd0ff21678030709f51e7f57b223bd Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Tue, 18 Apr 2006 01:01:41 +0000 Subject: [PATCH] correct function signature --- Modules/_testcapimodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 1138258ec9..e8881dc250 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -234,7 +234,7 @@ raise_test_longlong_error(const char* msg) #include "testcapi_long.h" static PyObject * -test_longlong_api(PyObject* self) +test_longlong_api(PyObject* self, PyObject *args) { return TESTNAME(raise_test_longlong_error); } -- 2.40.0