diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-07-30 19:01:23 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-07-30 19:01:23 (GMT) |
commit | 32d483c39b4169b48ab3a98c36a77ea4e74b9f5a (patch) | |
tree | 867dda9b2ba3cda74ff706c56aebfa0ab1008fae /Python/pythonrun.c | |
parent | 8547a0e29be7c16bb3d45077f1e95bf7ba313a77 (diff) | |
download | cpython-32d483c39b4169b48ab3a98c36a77ea4e74b9f5a.zip cpython-32d483c39b4169b48ab3a98c36a77ea4e74b9f5a.tar.gz cpython-32d483c39b4169b48ab3a98c36a77ea4e74b9f5a.tar.bz2 |
Fix style
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 18c2baa..86c3206 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1382,8 +1382,8 @@ maybe_pyc_file(FILE *fp, const char* filename, const char* ext, int closeit) return 0; } -int -static set_main_loader(PyObject *d, const char *filename, const char *loader_name) +static int +set_main_loader(PyObject *d, const char *filename, const char *loader_name) { PyInterpreterState *interp; PyThreadState *tstate; |