From: Guido van Rossum Date: Tue, 10 Jul 2007 20:14:13 +0000 (+0000) Subject: Silence compiler warning. X-Git-Tag: v3.0a1~706 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1bd2122041d06782f46dd5f3c6b2b50909a7bd65;p=python Silence compiler warning. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index d8bc6466bf..bb69b19142 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -294,7 +294,7 @@ extern void dump_counts(FILE*); /* Flush stdout and stderr */ void -flush_std_files() +flush_std_files(void) { PyObject *fout = PySys_GetObject("stdout"); PyObject *ferr = PySys_GetObject("stderr");