summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-10 20:14:13 (GMT)
committerGuido van Rossum <guido@python.org>2007-07-10 20:14:13 (GMT)
commit1bd2122041d06782f46dd5f3c6b2b50909a7bd65 (patch)
treec4c9f0652f000d12ac24da307b2c464fbc682fd5
parent3f42908051dbb4213f213c52fc9ab4a457714327 (diff)
downloadcpython-1bd2122041d06782f46dd5f3c6b2b50909a7bd65.zip
cpython-1bd2122041d06782f46dd5f3c6b2b50909a7bd65.tar.gz
cpython-1bd2122041d06782f46dd5f3c6b2b50909a7bd65.tar.bz2
Silence compiler warning.
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index d8bc646..bb69b19 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");