From: Fred Drake Date: Wed, 11 Oct 2000 21:44:02 +0000 (+0000) Subject: Remove one more gcc -Wall warning. X-Git-Tag: v2.0~98 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4747a18ef948c2a38529b4a5a15e1bae1ee0b7f9;p=thirdparty%2FPython%2Fcpython.git Remove one more gcc -Wall warning. --- diff --git a/Modules/dlmodule.c b/Modules/dlmodule.c index 971b06f9d41c..b7cd35b3d80a 100644 --- a/Modules/dlmodule.c +++ b/Modules/dlmodule.c @@ -70,7 +70,8 @@ static PyObject * dl_call(dlobject *xp, PyObject *args) { PyObject *name; - long (*func)(); + long (*func)(long, long, long, long, long, + long, long, long, long, long); long alist[10]; long res; int i;