From d885e95be4d5e8e23b9cdd72f4af38afa6f2f2e4 Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Tue, 6 Jul 2010 10:53:30 +0000 Subject: [PATCH] - sysmodule.c (get_hash_info): Define as static function. --- Python/sysmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 9ec8ab1489..61c9b1ef33 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -595,7 +595,7 @@ static PyStructSequence_Desc hash_info_desc = { 5, }; -PyObject * +static PyObject * get_hash_info(void) { PyObject *hash_info; -- 2.50.0