diff options
author | Guido van Rossum <guido@python.org> | 2007-07-10 20:14:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-10 20:14:13 (GMT) |
commit | 1bd2122041d06782f46dd5f3c6b2b50909a7bd65 (patch) | |
tree | c4c9f0652f000d12ac24da307b2c464fbc682fd5 /Python | |
parent | 3f42908051dbb4213f213c52fc9ab4a457714327 (diff) | |
download | cpython-1bd2122041d06782f46dd5f3c6b2b50909a7bd65.zip cpython-1bd2122041d06782f46dd5f3c6b2b50909a7bd65.tar.gz cpython-1bd2122041d06782f46dd5f3c6b2b50909a7bd65.tar.bz2 |
Silence compiler warning.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 2 |
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"); |