commit | 1bd2122041d06782f46dd5f3c6b2b50909a7bd65 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Jul 10 20:14:13 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Jul 10 20:14:13 2007 +0000 |
tree | c4c9f0652f000d12ac24da307b2c464fbc682fd5 | |
parent | 3f42908051dbb4213f213c52fc9ab4a457714327 [diff] |
Silence compiler warning.
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 @@ /* Flush stdout and stderr */ void -flush_std_files() +flush_std_files(void) { PyObject *fout = PySys_GetObject("stdout"); PyObject *ferr = PySys_GetObject("stderr");