From aff36f129563b0693e220d0fc83fb23c7e78c583 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 19 Oct 2008 13:59:01 +0000 Subject: fix compiler warning --- Python/Python-ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/Python-ast.c') diff --git a/Python/Python-ast.c b/Python/Python-ast.c index cabc66639b..4a999d12f4 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -615,7 +615,7 @@ static int obj2ast_bool(PyObject* obj, bool* out, PyArena* arena) return 0; } -static int add_ast_fields() +static int add_ast_fields(void) { PyObject *empty_tuple, *d; if (PyType_Ready(&AST_type) < 0) -- cgit v1.2.1