From 9b1d33b105e33a4bb780db1652688e6b98fed31e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 11 Feb 1992 15:56:02 +0000 Subject: [PATCH] Use correct prototype for invert(). --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 653b1cd54d9..1c3a6102d6a 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1532,7 +1532,7 @@ static object * invert(v) object *v; { - object * (*f) FPROTO((object *, object *)); + object * (*f) FPROTO((object *)); if (v->ob_type->tp_as_number != NULL && (f = v->ob_type->tp_as_number->nb_invert) != NULL) return (*f)(v);